/* ==========================================================================
   Base Reset and Typography
   ========================================================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #14172b;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #2f5bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1a3fd6;
}

::placeholder {
    color: #94a0b8;
}

/* ==========================================================================
   Page Container
   ========================================================================== */
.page-container {
    /*max-width: 1536px;*/
    margin: 0 auto;
    background: #fff;
    position: relative;
}

/* ==========================================================================
   RBI Compliance Banner
   ========================================================================== */
.rbi-banner {
    background: linear-gradient(90deg, #0a1450, #16226b);
    color: #fff;
    padding: 9px 24px;
}

.rbi-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.5;
}

.rbi-banner-icon {
    color: #ffd166;
    flex-shrink: 0;
}

.rbi-banner-inner strong {
    color: #ffd166;
    font-weight: 700;
}

.rbi-banner-link {
    color: #9cc2ff;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: underline;
}

.rbi-banner-link:hover {
    color: #fff;
}

@media (max-width: 640px) {
    .rbi-banner {
        padding: 8px 14px;
    }
    .rbi-banner-inner {
        font-size: 11.5px;
    }
}

/* ==========================================================================
   Header (Navbar)
   ========================================================================== */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: #fff;
    border-bottom: 1px solid #e6e9f2;
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-box {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, #3b6bff, #0a1450);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #0a1450;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    color: #8b93a7;
    letter-spacing: .03em;
    margin-top: 2px;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2b2f45;
    white-space: nowrap;
}

.nav-links a {
    color: #2b2f45;
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: #2f5bff;
}

.nav-links a.active {
    color: #2f5bff;
    border-bottom: 2px solid #2f5bff;
    padding-bottom: 4px;
}

/* Services Dropdown in Navbar */
.nav-services {
    position: relative;
}

.nav-services > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-services .dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #e6e9f2;
    border-radius: 10px;
    box-shadow: 0 16px 32px rgba(10, 20, 80, 0.14);
    padding: 8px;
    min-width: 190px;
    z-index: 60;
    transition: opacity .15s ease, visibility .15s ease;
}

.nav-services:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-services .dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #2b2f45;
    border-radius: 6px;
    white-space: nowrap;
    border-bottom: none !important;
}

.nav-services .dropdown a:hover {
    background: #f4f6fb;
    color: #2f5bff;
}

.dropdown-view-all {
    color: #2f5bff !important;
    border-top: 1px solid #eef0f6 !important;
    margin-top: 4px;
    padding-top: 10px !important;
    border-radius: 0 !important;
}

/* Header Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0a1450;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    background: #2f5bff;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #1a3fd6;
}

.btn-primary-large {
    background: #2f5bff;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary-large:hover {
    background: #1a3fd6;
}

.btn-secondary-large {
    background: transparent;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.5);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-large:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ==========================================================================
   Mobile Responsive Navigation Elements
   ========================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #0a1450;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Drawer & Backdrop */
.drawer-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 98;
}

.drawer-backdrop.open {
    display: block;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 99;
    padding: 70px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
}

.mobile-nav-links a {
    color: #2b2f45;
    padding: 6px 0;
    border-bottom: 1px solid #f4f6fb;
    display: block;
}

.mobile-nav-links a.active {
    color: #2f5bff;
    border-left: 3px solid #2f5bff;
    padding-left: 8px;
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #2b2f45;
    padding: 6px 0;
    border-bottom: 1px solid #f4f6fb;
}

.mobile-dropdown-trigger.active span {
    color: #2f5bff;
    font-weight: 700;
    border-left: 3px solid #2f5bff;
    padding-left: 8px;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-left: 14px;
    margin-top: 4px;
}

.mobile-dropdown-menu.open {
    display: flex;
}

.mobile-dropdown-menu a {
    font-size: 13.5px;
    font-weight: 500;
    color: #48526b;
    border-bottom: none;
    padding: 4px 0;
}

.mobile-drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e6e9f2;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #0a1450, #122074);
    padding: 64px 48px 56px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
}

.hero-title span {
    color: #7ea0ff;
}

.hero-subtitle {
    color: #c3cbec;
    font-size: 17px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 0 26px;
}

.hero-features-list {
    display: flex;
    gap: 28px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fb0ff;
}

.hero-feature-label {
    color: #c3cbec;
    font-size: 12.5px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: #fff;
    padding: 34px 48px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(10,20,80,0.06);
    position: relative;
    z-index: 2;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eaf0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f5bff;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #0a1450;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services-section {
    padding: 56px 48px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a1450;
    margin: 0 0 10px;
}

.section-title-line {
    width: 60px;
    height: 3px;
    background: #2f5bff;
    margin: 0 auto 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid #e6e9f2;
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(10,20,80,0.06);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a1450;
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 14px;
}

.service-card-link {
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2f5bff;
}

.service-card-link:hover {
    color: #1a3fd6;
}

.service-rbi-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11.5px;
    color: #364160;
    background: #f4f6ff;
    border: 1px solid #e2e8ff;
    border-radius: 8px;
    padding: 8px 10px;
    margin: 0 0 14px;
    line-height: 1.45;
}

.service-rbi-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #2f5bff;
}

.service-rbi-note b {
    color: #0a1450;
}

/* ==========================================================================
   Solutions & Live Transactions Section
   ========================================================================== */
.solutions-section-container {
    padding: 0 48px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 20px;
}

.why-choose-card {
    background: linear-gradient(135deg,#0a1450,#152680);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.why-choose-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14.5px;
    font-weight: 600;
}

.why-choose-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    margin: auto auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ea0ff;
}

.solutions-column-title {
    font-size: 18px;
    font-weight: 800;
    color: #0a1450;
    margin-bottom: 16px;
}

.solutions-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.solution-item-card {
    border-radius: 12px;
    padding: 18px;
}

.solution-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.solution-item-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0a1450;
    margin-bottom: 4px;
}

.solution-item-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Solutions Cards Backgrounds */
.solution-retailers { background: #e6f0ff; }
.solution-retailers .solution-icon-circle svg { stroke: #2f5bff; }
.solution-distributors { background: #fdece0; }
.solution-distributors .solution-icon-circle svg { stroke: #e07a1f; }
.solution-api-partners { background: #eee9ff; }
.solution-api-partners .solution-icon-circle svg { stroke: #6b3ff2; }
.solution-enterprises { background: #e6f7ee; }
.solution-enterprises .solution-icon-circle svg { stroke: #1fa15c; }

/* Live Transactions Box */
.live-tx-card {
    background: #f4f6fb;
    border-radius: 16px;
    padding: 22px;
}

.live-tx-title {
    font-size: 15px;
    font-weight: 800;
    color: #0a1450;
    margin-bottom: 16px;
}

.live-tx-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #e6e9f2;
}

.live-tx-row:last-child {
    border-bottom: none;
}

.live-tx-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-tx-content {
    flex: 1;
}

.live-tx-name {
    font-size: 12.5px;
    font-weight: 700;
    color: #0a1450;
}

.live-tx-amount {
    font-size: 11.5px;
    color: #64748b;
}

.live-tx-status {
    font-size: 11px;
    color: #2ba84a;
    font-weight: 700;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background: #0a1440;
    padding: 48px 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 24px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-box {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, #3b6bff, #7ea0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.footer-logo-text-block {
    display: flex;
    flex-direction: column;
}

.footer-logo-text {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 10px;
    color: #8b93c7;
    margin-top: 2px;
}

.footer-desc {
    color: #8b93c7;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.social-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon-circle:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.footer-col-title {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link-item a {
    color: #a9b0d0;
    font-size: 13px;
    transition: color 0.15s ease;
}

.footer-link-item a:hover {
    color: #fff;
}

.footer-info-text {
    color: #a9b0d0;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #8b93c7;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Subpages Hero and General Subpage Elements
   ========================================================================== */
.subpage-hero {
    background: linear-gradient(135deg, #0a1450, #122074);
    padding: 44px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.subpage-hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
}

.subpage-hero-desc {
    color: #c3cbec;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 440px;
}

.subpage-hero-badges {
    display: flex;
    gap: 16px;
}

.subpage-hero-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 14px 20px;
}

.subpage-hero-badge-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.subpage-hero-badge-sub {
    color: #9aa6d8;
    font-size: 12px;
}

.subpage-hero-graphics {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-hero-graphics-center {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(63,107,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.subpage-hero-graphics-node {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Node Positions in Graphics */
.node-top { top: -6px; left: 50%; transform: translateX(-50%); }
.node-top-right { top: 14px; right: 6%; }
.node-bottom-right { bottom: 14px; right: 6%; }
.node-bottom { bottom: -6px; left: 50%; transform: translateX(-50%); }
.node-bottom-left { bottom: 14px; left: 6%; }
.node-top-left { top: 14px; left: 6%; }

/* ==========================================================================
   About Intro & Values Sections
   ========================================================================== */
.about-intro-grid {
    padding: 56px 32px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.about-image-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #2f5bff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.about-intro-subtitle {
    color: #2f5bff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

.about-intro-title {
    font-size: 26px;
    font-weight: 800;
    color: #0a1450;
    margin: 0 0 16px;
    line-height: 1.3;
}

.about-intro-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.about-features-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about-feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e6e9f2;
    border-radius: 10px;
    padding: 10px 14px;
}

.about-feature-box-title {
    font-size: 13px;
    font-weight: 700;
    color: #0a1450;
}

/* Values Grid */
.values-section {
    padding: 20px 32px 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    text-align: left;
    margin-top: 30px;
}

.value-card {
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s ease;
}

.value-card:hover {
    box-shadow: 0 6px 16px rgba(10,20,80,0.04);
}

.value-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.value-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a1450;
    margin-bottom: 6px;
}

.value-card-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
}

/* Values Background Colors */
.val-security { background: #e6f0ff; color: #2f5bff; }
.val-innovation { background: #e6f7ee; color: #1fa15c; }
.val-integrity { background: #fdece0; color: #e07a1f; }
.val-custfocus { background: #eee9ff; color: #6b3ff2; }
.val-growth { background: #fde6f0; color: #d63384; }

/* Consolidated Row of stats */
.about-stats-strip {
    margin: 0 32px 48px;
    background: #f4f6fb;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    flex: 1;
}

.about-stat-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f5bff;
}

.about-stat-val {
    font-size: 19px;
    font-weight: 800;
    color: #0a1450;
}

.about-stat-lbl {
    font-size: 12.5px;
    color: #64748b;
}

/* ==========================================================================
   Services Page Custom Elements
   ========================================================================== */
.subpage-header {
    background: linear-gradient(135deg, #0a1450, #122074);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.subpage-header-left {
    display: flex;
    flex-direction: column;
}

.subpage-header-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
}

.subpage-header-breadcrumbs {
    color: #c3cbec;
    font-size: 13.5px;
}

.subpage-header-breadcrumbs span {
    color: #fff;
}

.subpage-header-divider {
    width: 1.5px;
    height: 44px;
    background: rgba(255,255,255,0.25);
}

.subpage-header-right-text {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
}

.subpage-header-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ea0ff;
    flex-shrink: 0;
}

/* Split Image and Text Section */
.split-grid-section {
    padding: 52px 32px 16px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.split-grid-title {
    font-size: 26px;
    font-weight: 800;
    color: #0a1450;
    margin: 0 0 10px;
}

.split-grid-line {
    width: 60px;
    height: 3px;
    background: #2f5bff;
    margin: 0 0 14px;
}

.split-grid-desc {
    color: #64748b;
    font-size: 14.5px;
    max-width: 520px;
    margin: 0;
    line-height: 1.6;
}

.split-grid-image {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(10,20,80,0.18);
    display: block;
}

/* Service Detail blocks (Alternating/List style) */
.services-detail-section {
    padding: 32px;
}

/* ==========================================================================
   Service Hero Visual (illustration card used on service detail pages)
   ========================================================================== */
.service-hero-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 48px rgba(10,20,80,0.18);
    background: linear-gradient(135deg, var(--accent-bg, #eee9ff), #ffffff 70%);
}

.shv-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shv-icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(10,20,80,0.12);
    color: var(--accent, #6b3ff2);
}

.shv-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(10,20,80,0.10);
    font-size: 12px;
    font-weight: 700;
    color: #0a1450;
}

.shv-badge svg {
    color: #1fa15c;
    flex-shrink: 0;
}

/* ==========================================================================
   Steps Grid (used on ApiSolutions & new service pages)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RBI Rules / Compliance Section (service detail pages)
   ========================================================================== */
.rules-section {
    background: #f4f6ff;
    border: 1px solid #e2e8ff;
    border-radius: 18px;
    padding: 32px;
    margin: 8px 0 8px;
}

.rules-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.rules-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #0a1450;
    color: #ffd166;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rules-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #0a1450;
    margin: 0;
}

.rules-section-sub {
    font-size: 13.5px;
    color: #64748b;
    margin: 4px 0 22px;
    line-height: 1.6;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

.rules-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    padding: 14px 16px;
}

.rules-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2f5bff;
}

.rules-item-text {
    font-size: 13.5px;
    color: #48526b;
    line-height: 1.55;
}

.rules-item-text b {
    color: #0a1450;
}

.rules-disclaimer {
    font-size: 12px;
    color: #8b93a7;
    margin: 20px 0 0;
    line-height: 1.6;
    border-top: 1px dashed #e2e8ff;
    padding-top: 14px;
}

/* ==========================================================================
   Eligibility Checklist (service detail pages)
   ========================================================================== */
.eligibility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .eligibility-list {
        grid-template-columns: 1fr;
    }
}

.eligibility-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: #364160;
    line-height: 1.5;
}

.eligibility-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #1fa15c;
}

/* ==========================================================================
   Role Hierarchy Strip (Retailer / DT / MD / TSM / ASM pages)
   ========================================================================== */
.role-hierarchy-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 900px;
    margin: 0 auto;
}

.role-hierarchy-node {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f4f6ff;
    border: 1px solid #e2e8ff;
    color: #48526b;
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 30px;
    white-space: nowrap;
}

.role-hierarchy-node.active {
    background: linear-gradient(135deg, #2f5bff, #6b3ff2);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 22px rgba(47, 91, 255, 0.28);
}

.role-hierarchy-arrow {
    color: #b8c0da;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .role-hierarchy-strip {
        gap: 4px;
    }

    .role-hierarchy-node {
        font-size: 11.5px;
        padding: 7px 12px;
    }
}

/* ==========================================================================
   Income Calculator (Retailer / DT / MD / TSM / ASM pages)
   ========================================================================== */
.income-calc {
    background: #fff;
    border: 1px solid #e6e9f2;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(10, 20, 80, 0.08);
}

.income-calc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.income-calc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #0a1450;
    color: #ffd166;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.income-calc-title {
    font-size: 19px;
    font-weight: 800;
    color: #0a1450;
}

.income-calc-sub {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.income-calc-body {
    display: grid;
    gap: 22px;
    margin-bottom: 26px;
}

.income-calc-row {
    padding-bottom: 18px;
    margin-bottom: 4px;
    border-bottom: 1px dashed #e2e8ff;
}

.income-calc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.income-calc-row-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.income-calc-row-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0a1450;
}

.income-calc-row-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.income-calc-row-meta {
    font-size: 12.5px;
    color: #64748b;
}

.income-calc-row-sub {
    color: #0a1450;
    font-weight: 800;
}

.income-calc-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 600;
    color: #364160;
    margin-bottom: 10px;
}

.income-calc-field-value {
    color: #2f5bff;
    font-weight: 800;
    background: #eaf0ff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12.5px;
    white-space: nowrap;
}

.income-calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #e2e8ff;
    outline: none;
    cursor: pointer;
    display: block;
}

.income-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2f5bff;
    box-shadow: 0 2px 6px rgba(47, 91, 255, 0.4);
    cursor: pointer;
    border: 2px solid #fff;
}

.income-calc-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2f5bff;
    box-shadow: 0 2px 6px rgba(47, 91, 255, 0.4);
    cursor: pointer;
    border: 2px solid #fff;
}

.income-calc-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: linear-gradient(135deg, #0a1450, #122074);
    border-radius: 14px;
    padding: 22px;
}

.income-calc-result-item {
    text-align: center;
}

.income-calc-result-label {
    font-size: 11.5px;
    color: #c3cbec;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.income-calc-result-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.income-calc-result-value-main {
    color: #7ea0ff;
    font-size: 26px;
}

.income-calc-disclaimer {
    font-size: 11.5px;
    color: #8b93a7;
    margin: 18px 0 0;
    line-height: 1.6;
    border-top: 1px dashed #e2e8ff;
    padding-top: 14px;
}

@media (max-width: 600px) {
    .income-calc-result {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    border: 1px solid #e6e9f2;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-detail-card:nth-child(even) .service-detail-text-block {
    grid-column: 2;
}

.service-detail-card:nth-child(even) .service-detail-graphics {
    grid-column: 1;
    grid-row: 1;
}

.service-detail-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.service-detail-title {
    font-size: 22px;
    font-weight: 800;
    color: #0a1450;
    margin: 0 0 12px;
}

.service-detail-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.service-detail-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.service-detail-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2b2f45;
}

.service-detail-graphics {
    background: #f4f6fb;
    border-radius: 16px;
    padding: 30px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Partners Page Custom Elements
   ========================================================================== */
.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 6px;
}

.partner-card {
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    padding: 4px 8px;
    overflow: hidden;
    width: 100%;
}

.partner-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.partner-card-tech {
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    padding: 4px 8px;
    overflow: hidden;
    width: 100%;
}

.partner-card-tech:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 440px;
    margin: 0 auto;
}

/* Partners Form layout */
.partners-form-container {
    border: 1px solid #e6e9f2;
    border-radius: 16px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(10,20,80,0.03);
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==========================================================================
   Pricing Page Custom Elements
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr 1.3fr 1.3fr 1.3fr;
    gap: 16px;
    align-items: start;
    padding: 24px 32px;
}

.pricing-info-card {
    border: 1px solid #e6e9f2;
    border-radius: 14px;
    padding: 22px;
    background: #f9fafc;
}

.pricing-info-title {
    font-size: 16px;
    font-weight: 800;
    color: #0a1450;
    margin-bottom: 16px;
}

.pricing-info-feature {
    margin-bottom: 16px;
}

.pricing-info-feature-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.pricing-info-icon-box {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: #e6f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2f5bff;
}

.pricing-info-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #0a1450;
}

.pricing-info-feature-desc {
    font-size: 11.5px;
    color: #64748b;
    margin-left: 34px;
}

.pricing-commission-card {
    border: 1px solid #e6e9f2;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pricing-card-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-title-text {
    font-size: 15px;
    font-weight: 800;
    color: #0a1450;
}

.pricing-card-sub-text {
    font-size: 11px;
    color: #64748b;
    margin-top: 1px;
}

.pricing-table-header {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    color: #94a0b8;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef0f6;
    margin-bottom: 8px;
}

.pricing-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f9;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-row-title {
    font-size: 12.5px;
    color: #2b2f45;
    font-weight: 600;
}

.pricing-row-sub {
    font-size: 10px;
    color: #94a0b8;
    font-weight: 400;
}

.pricing-row-val {
    font-size: 13.5px;
    color: #0a1450;
    font-weight: 800;
}

/* ==========================================================================
   Policies Page Styles (.policy class)
   ========================================================================== */
.policy-section {
    padding: 48px;
    max-width: 900px;
}

.policy h2 {
    font-size: 19px;
    font-weight: 800;
    color: #0a1450;
    margin: 28px 0 10px;
}

.policy p {
    font-size: 14px;
    color: #48526b;
    line-height: 1.75;
    margin: 0 0 12px;
}

.policy ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.policy li {
    font-size: 14px;
    color: #48526b;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ==========================================================================
   Contact Page Custom Layout
   ========================================================================== */
.contact-grid {
    padding: 44px 32px;
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.9fr;
    gap: 22px;
}

.contact-card-box {
    border: 1px solid #e6e9f2;
    border-radius: 14px;
    padding: 24px;
    background: #fff;
}

.contact-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #0a1450;
    margin-bottom: 4px;
}

.contact-card-line {
    width: 36px;
    height: 2.5px;
    background: #2f5bff;
    margin-bottom: 14px;
}

.contact-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 18px;
}

.contact-info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-info-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0a1450;
}

.contact-info-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* Form Styles */
.contact-form-group {
    margin-bottom: 14px;
}

.contact-form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0a1450;
    margin-bottom: 5px;
}

.contact-form-input {
    width: 100%;
    border: 1.5px solid #e6e9f2;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    color: #14172b;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form-input:focus {
    border-color: #2f5bff;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form-submit-btn {
    width: 100%;
    background: #2f5bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form-submit-btn:hover {
    background: #1a3fd6;
}

.contact-map-iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
}


/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */

/* Large Tablets & Desktop under 1200px */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .pricing-info-card {
        grid-column: span 3;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium Screens / Tablets */
@media (max-width: 1024px) {
    /* Hide normal header navigation actions */
    .nav-links, .header-actions {
        display: none;
    }
    
    /* Show mobile menu burger toggle button */
    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 30px;
        text-align: center;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        margin: 0 auto 26px;
    }
    .hero-features-list {
        justify-content: center;
        gap: 20px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-container {
        height: 320px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-section-container {
        grid-template-columns: 1fr 1fr;
    }
    .solutions-section-container > div:last-child {
        grid-column: span 2;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid > div:first-child {
        grid-column: span 2;
        margin-bottom: 20px;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-info-card {
        grid-column: span 2;
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid > div:last-child {
        grid-column: span 2;
    }
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .service-detail-card:nth-child(even) .service-detail-text-block {
        grid-column: 1;
    }
    
    /* Subpage general structures */
    .subpage-hero {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        text-align: center;
        gap: 20px;
    }
    .subpage-hero-title {
        font-size: 32px;
    }
    .subpage-hero-desc {
        margin: 0 auto 22px;
    }
    .subpage-hero-badges {
        justify-content: center;
    }
    .subpage-hero-graphics {
        height: 180px;
    }
    
    /* Services Page Split layout */
    .split-grid-section {
        grid-template-columns: 1fr;
        padding: 40px 24px 16px;
        gap: 30px;
        text-align: center;
    }
    .split-grid-line {
        margin: 0 auto 14px;
    }
    .split-grid-desc {
        margin: 0 auto;
    }
}

/* Small Screens / Mobile Portals */
@media (max-width: 768px) {
    /* Header layout */
    .main-header {
        padding: 12px 20px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-image-container {
        height: 250px;
    }

    /* Stats Strip */
    .stats-section {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .stat-item {
        width: 100%;
        justify-content: center;
    }

    /* General Padding */
    .services-section {
        padding: 40px 24px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Solutions Section */
    .solutions-section-container {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
    }
    .solutions-section-container > div:last-child {
        grid-column: span 1;
    }
    .solutions-subgrid {
        grid-template-columns: 1fr;
    }

    /* Subpage general structures */
    .subpage-hero {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        text-align: center;
        gap: 20px;
    }
    .subpage-hero-title {
        font-size: 30px;
    }
    .subpage-hero-desc {
        margin: 0 auto 22px;
    }
    .subpage-hero-badges {
        justify-content: center;
    }
    .subpage-hero-graphics {
        height: 180px;
    }
    .subpage-hero-graphics-center {
        width: 80px;
        height: 80px;
    }
    .subpage-hero-graphics-node {
        width: 32px;
        height: 32px;
    }
    .node-top-right { right: 12%; }
    .node-bottom-right { right: 12%; }
    .node-bottom-left { left: 12%; }
    .node-top-left { left: 12%; }

    /* About Section */
    .about-intro-grid {
        padding: 40px 24px;
    }
    .about-image {
        height: 220px;
    }
    .about-features-subgrid {
        grid-template-columns: 1fr;
    }
    .values-section {
        padding: 20px 24px 40px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        margin: 0 24px 40px;
        gap: 16px;
    }

    /* Services Page Split layout */
    .split-grid-section {
        grid-template-columns: 1fr;
        padding: 40px 24px 16px;
        gap: 30px;
        text-align: center;
    }
    .split-grid-line {
        margin: 0 auto 14px;
    }
    .split-grid-desc {
        margin: 0 auto;
    }
    .services-detail-section {
        padding: 24px;
    }
    .service-detail-card {
        padding: 20px;
    }
    .service-detail-features-list {
        grid-template-columns: 1fr;
    }
    .service-detail-graphics {
        height: 180px;
        padding: 20px;
    }

    /* Subpage Header */
    .subpage-header {
        flex-direction: column;
        padding: 30px 24px;
        text-align: center;
        gap: 16px;
    }
    .subpage-header-divider {
        display: none;
    }
    .subpage-header-right-text {
        text-align: center;
        font-size: 15px;
    }
    .subpage-header-icon-circle {
        margin: 0 auto;
    }

    /* Partners Page */
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .partners-form-container {
        padding: 20px;
    }
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Pricing Page */
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
    .pricing-info-card {
        grid-column: span 1;
    }

    /* Policy pages */
    .policy-section {
        padding: 40px 24px;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
    .contact-grid > div:last-child {
        grid-column: span 1;
    }

    /* Footer */
    .footer {
        padding: 40px 24px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-grid > div:first-child {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 12px;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Grid styles */
.timeline-section {
    padding: 0 32px 48px;
    text-align: center;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
    margin-top: 30px;
}
.timeline-line {
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: repeating-linear-gradient(to right, #c7cee6 0, #c7cee6 6px, transparent 6px, transparent 12px);
    z-index: 0;
}
.timeline-item {
    position: relative;
}
.timeline-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2f5bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.timeline-year {
    font-size: 14.5px;
    font-weight: 800;
    color: #0a1450;
}
.timeline-title {
    font-size: 13px;
    font-weight: 700;
    color: #2b2f45;
    margin: 4px 0 6px;
}
.timeline-desc {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
}

/* Call to Action Banner */
.cta-banner {
    margin: 0 32px 56px;
    background: linear-gradient(135deg,#0a1450,#122074);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cta-title {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
}
.cta-subtitle {
    color: #c3cbec;
    font-size: 13.5px;
}
.btn-cta {
    background: #fff;
    color: #0a1450 !important;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 14px;
    }
    .timeline-line {
        display: none;
    }
}
@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        margin: 0 24px 40px;
    }
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* API Solutions Stats strip styles */
.api-stats-strip {
    margin: 20px 32px 48px;
    background: #f4f6fb;
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.api-stat-item-center {
    text-align: center;
    flex: 1;
}
.api-stat-item-center-val {
    font-size: 24px;
    font-weight: 800;
    color: #0a1450;
}
.api-stat-item-center-lbl {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}
.api-stats-divider {
    width: 1px;
    background: #e6e9f2;
}

@media (max-width: 768px) {
    .api-stats-strip {
        flex-direction: column;
        padding: 20px;
        margin: 0 24px 40px;
        gap: 16px;
    }
    .api-stats-divider {
        display: none;
    }
    .api-stat-item-center {
        text-align: center;
        width: 100%;
    }
}

/* Partners Page Styles */
.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 6px;
}

/* Banking cards – smaller height, wider */
.partner-card {
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    padding: 4px 8px;
    overflow: hidden;
    width: 100%;
}
.partner-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Tech cards – smaller height, wider */
.partner-card-tech {
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    padding: 4px 8px;
    overflow: hidden;
    width: 100%;
}
.partner-card-tech:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.partner-card-tech .partner-logo-img {
    padding: 6px;
}

/* Grids – wider cards, proper gap */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 440px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 16px;
    }
    .tech-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        gap: 16px;
    }
    .partner-card,
    .partner-card-tech {
        height: 56px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .partner-card,
    .partner-card-tech {
        height: 50px;
    }
}

/* ==========================================================================
   Policy Content — Beautified Layout
   ========================================================================== */
.policy-wrapper {
    background: #f8fafc;
    padding: 60px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.policy-card {
    background: #fff;
    max-width: 1600px;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 48px 56px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.025), 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.policy-intro {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.policy-block {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.policy-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.policy-block-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.policy-block-content p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 8px;
}

.policy-block-content ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.policy-block-content li {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-contact-box {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 12px;
}

    .policy-contact-box h2 {
        font-size: 17px;
        font-weight: 800;
        color: #0a1450;
    }

    .policy-contact-box p {
        font-size: 14px;
        color: #2b2f45;
        line-height: 1.7;
    }

@media (max-width: 768px) {
    .policy-card {
        padding: 30px 24px;
    }

    .policy-block {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .policy-wrapper {
        padding: 24px 12px;
    }
    .policy-card {
        padding: 24px 16px;
        border-radius: 12px;
    }
    .policy-block {
        gap: 10px;
        margin-bottom: 24px;
    }
    .policy-num {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 13px;
    }
    .policy-block-content h2 {
        font-size: 16px;
    }
    .policy-block-content p, .policy-block-content li {
        font-size: 13.5px;
    }
}

.policy-hero {
    background: linear-gradient(135deg, #0a1450, #122074);
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
}

.policy-hero-decor {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

    .policy-hero-decor::after {
        content: "";
        position: absolute;
        top: 40px;
        left: 40px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
    }

.policy-hero-inner {
    position: relative;
    z-index: 1;
}

.policy-hero-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy-hero-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ea0ff;
}

@media (max-width: 768px) {
    .policy-hero-top {
        flex-direction: column;
        text-align: center;
    }

    .policy-hero-decor {
        display: none;
    }
}
.policy-hero-breadcrumbs {
    margin-bottom: 14px;
}

.policy-hero-title{
    color:#fff;
}

.policy-hero-date {
    color: #7ea0ff;
}

/* ==========================================================================
   Hero — Eyebrow Badge, Trust Row & Floating Cards (Homepage)
   ========================================================================== */
.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffd166;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero-eyebrow-badge svg {
    flex-shrink: 0;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #c3cbec;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.hero-trust-item svg {
    color: #4ade80;
    flex-shrink: 0;
}

.hero-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hero-floating-card-top {
    top: 10px;
    right: -10px;
}

.hero-floating-card-bottom {
    bottom: 10px;
    left: -10px;
}

.hero-floating-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-floating-val {
    font-size: 14.5px;
    font-weight: 800;
    color: #0a1450;
    line-height: 1.2;
}

.hero-floating-lbl {
    font-size: 10.5px;
    color: #8b93a7;
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero-floating-card {
        display: none;
    }
}

/* ==========================================================================
   Hero Network Visual — animated Retailer/DT/MD/TSM/ASM system diagram
   ========================================================================== */
.hero-network-visual {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 460px;
    max-height: 380px;
    margin: 0 auto;
}

.hero-network-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hero-network-line {
    fill: none;
    stroke: rgba(126, 160, 255, 0.5);
    stroke-width: 1.6;
    stroke-dasharray: 6 6;
    animation: heroFlowDash 1.4s linear infinite;
}

.hero-network-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f5bff, #6b3ff2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 3;
    box-shadow: 0 0 0 8px rgba(47, 91, 255, 0.16), 0 20px 40px rgba(0,0,0,0.35);
    animation: softPulse 2.6s ease-in-out infinite;
}

.hero-network-hub svg {
    margin-bottom: 4px;
}

.hero-network-hub-label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.hero-network-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    z-index: 2;
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-network-node-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid var(--accent, rgba(255,255,255,0.35));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #fff);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    animation: heroNodePulse 2.8s ease-in-out infinite;
}

.hero-network-node:hover .hero-network-node-circle {
    background: var(--accent, #2f5bff);
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.hero-network-node-label {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(10, 20, 80, 0.55);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

@keyframes heroFlowDash {
    to { stroke-dashoffset: -24; }
}

@keyframes heroNodePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.16); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

@media (max-width: 900px) {
    .hero-network-node-circle {
        width: 46px;
        height: 46px;
    }

    .hero-network-hub {
        width: 78px;
        height: 78px;
    }

    .hero-network-node-label {
        font-size: 10px;
        padding: 2px 8px;
    }
}

/* ==========================================================================
   Partners / Trusted-By Strip (Homepage)
   ========================================================================== */
.partners-strip-section {
    padding: 44px 48px;
    background: #f8f9ff;
    text-align: center;
}

.partners-strip-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8b93a7;
    margin-bottom: 24px;
}

.partners-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .partners-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   How It Works (Homepage)
   ========================================================================== */
.how-step-card {
    position: relative;
    text-align: center;
    padding: 30px 22px;
}

.how-step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f5bff, #6b3ff2);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a1450;
    margin-bottom: 6px;
}

.how-step-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
}

/* ==========================================================================
   Testimonials (Homepage)
   ========================================================================== */
.testimonial-card {
    background: #fff;
    border: 1px solid #e6e9f2;
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #ffb020;
}

.testimonial-quote {
    font-size: 14px;
    color: #48526b;
    line-height: 1.65;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f2f8;
    padding-top: 14px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0a1450;
}

.testimonial-role {
    font-size: 12px;
    color: #8b93a7;
}

/* ==========================================================================
   FAQ (Homepage)
   ========================================================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e6e9f2;
    border-radius: 12px;
    padding: 4px 20px;
    background: #fff;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
    font-size: 14.5px;
    font-weight: 700;
    color: #0a1450;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: #2f5bff;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item-answer {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    padding: 0 0 18px;
}

/* ==========================================================================
   App / Download Style Banner Strip (Homepage, reused for security badges)
   ========================================================================== */
.security-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding: 28px 48px;
    background: #0a1450;
}

.security-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c3cbec;
    font-size: 12.5px;
    font-weight: 600;
}

.security-strip-item svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

@media (max-width: 600px) {
    .whatsapp-float-btn {
        right: 16px;
        bottom: 86px;
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   AI Chat Widget
   ========================================================================== */
.ai-chat-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
}

.ai-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #2f5bff, #6b3ff2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(47, 91, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-chat-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 32px rgba(47, 91, 255, 0.5);
}

.ai-chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    max-width: calc(100vw - 32px);
    height: 460px;
    max-height: 70vh;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 56px rgba(10, 20, 80, 0.28);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ai-chat-window.open {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ai-chat-header {
    background: linear-gradient(135deg, #0a1450, #16226b);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ai-chat-header-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffd166;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-chat-header-title {
    font-size: 14px;
    font-weight: 800;
}

.ai-chat-header-sub {
    font-size: 11px;
    color: #9cc2ff;
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8f9ff;
}

.ai-chat-msg {
    max-width: 82%;
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
}

.ai-chat-msg-assistant {
    align-self: flex-start;
    background: #fff;
    border: 1px solid #e6e9f2;
    color: #364160;
    border-bottom-left-radius: 4px;
}

.ai-chat-msg-user {
    align-self: flex-end;
    background: #2f5bff;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-chat-cta {
    align-self: flex-start;
    display: inline-block;
    background: #ffd166;
    color: #0a1450 !important;
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
}

.ai-chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 11px 14px;
}

.ai-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b7bfd6;
    animation: typingBounce 1.2s infinite ease-in-out;
}

.ai-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.ai-chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 14px 12px;
    flex-shrink: 0;
    background: #f8f9ff;
}

.ai-chat-chip {
    border: 1px solid #d7dcf5;
    background: #fff;
    color: #2f5bff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.ai-chat-chip:hover {
    background: #2f5bff;
    color: #fff;
}

.ai-chat-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #e6e9f2;
    flex-shrink: 0;
    background: #fff;
}

.ai-chat-input-row input {
    flex: 1;
    border: 1px solid #e2e8f5;
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 13px;
    outline: none;
}

.ai-chat-input-row input:focus {
    border-color: #2f5bff;
}

.ai-chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #2f5bff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.ai-chat-send-btn:hover {
    background: #1a3fd6;
}

@media (max-width: 600px) {
    .ai-chat-widget {
        right: 16px;
        bottom: 16px;
    }
    .ai-chat-window {
        width: calc(100vw - 32px);
        height: 65vh;
    }
}

/* ==========================================================================
   Homepage Welcome Toast — auto-shown to greet new visitors and highlight
   earning potential. Sits bottom-left so it never collides with the
   WhatsApp button / AI chat bubble on the right.
   ========================================================================== */
.welcome-toast {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 998;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(10, 20, 80, 0.22);
    padding: 20px;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.welcome-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.welcome-toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #b8c0da;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.welcome-toast-close:hover {
    color: #64748b;
}

.welcome-toast-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.welcome-toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f5bff, #6b3ff2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: softPulse 2.6s ease-in-out infinite;
}

.welcome-toast-title {
    font-size: 15px;
    font-weight: 800;
    color: #0a1450;
}

.welcome-toast-text {
    font-size: 13px;
    color: #48526b;
    line-height: 1.55;
    margin: 0 0 16px;
}

.welcome-toast-text b {
    color: #1fa15c;
}

.welcome-toast-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.welcome-toast-cta {
    background: #2f5bff;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.welcome-toast-cta:hover {
    background: #1a3fd6;
    transform: translateY(-1px);
}

.welcome-toast-dismiss {
    background: transparent;
    color: #64748b !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 600px) {
    .welcome-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }
}

/* ==========================================================================
   Site-Wide Animation System (scroll-reveal + hero entrance + micro-interactions)
   ========================================================================== */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.35); }
    50%      { box-shadow: 0 0 0 6px rgba(255, 209, 102, 0); }
}

/* Scroll-reveal base state — JS toggles .is-visible on intersection */
.reveal {
    opacity: 0;
    transform: translateY(42px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* No-JS / no-motion fallback: never hide content permanently */
.no-js .reveal,
html:not(.js) .reveal {
    opacity: 1;
    transform: none;
}

/* Hero entrance animation — runs immediately on page load, no JS needed */
.hero-eyebrow-badge {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.05s;
}

.hero-title {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

.hero-subtitle {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.25s;
}

.hero-features-list {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.35s;
}

.hero-buttons {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.45s;
}

.hero-trust-row {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.55s;
}

.hero-image-container {
    animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
}

/* Floating stat cards — gentle continuous bob, staggered */
.hero-floating-card {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both, floatY 4.5s ease-in-out infinite;
}

.hero-floating-card-top {
    animation-delay: 0.7s, 1.6s;
}

.hero-floating-card-bottom {
    animation-delay: 0.85s, 2s;
}

.hero-eyebrow-badge svg {
    animation: softPulse 2.4s ease-in-out infinite;
    border-radius: 50%;
}

/* Micro-interactions on buttons & links */
.btn-primary-large,
.btn-secondary-large,
.btn-primary {
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-large:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(47, 91, 255, 0.28);
}

.btn-secondary-large:hover {
    transform: translateY(-2px);
}

.service-card-link {
    transition: color 0.2s ease, gap 0.2s ease;
}

.service-card-link:hover svg {
    transform: translateX(3px);
}

.service-card-link svg {
    transition: transform 0.2s ease;
}

.partner-card {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* Respect reduced-motion preference for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero-eyebrow-badge,
    .hero-title,
    .hero-subtitle,
    .hero-features-list,
    .hero-buttons,
    .hero-trust-row,
    .hero-image-container,
    .hero-floating-card,
    .hero-eyebrow-badge svg {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


