
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition-fast: 0.3s;
    --transition-normal: 0.5s;
    --transition-slow: 0.8s;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;

    background: var(--bg-light);
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* ===================================
   LOADING ANIMATION
   =================================== */

   .connected-banks {
    background: #f3f4f6;
    border-radius: 28px;
    padding: 28px;
    margin-top: 40px;
}

.banks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.banks-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.check-balance-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;          /* 🔥 VERY IMPORTANT */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;        /* 🔥 prevents line break */
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-dot {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}




/* Grey background container */
.dashboard-preview {
    background: #f3f4f6;
    border-radius: 32px;
    padding: 60px 20px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Center card */
.preview-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    text-align: center;
    box-shadow: inset 0 0 0 1px #e5e7eb;
}

/* Video */
.preview-video {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Status UI (for non-video sections) */
.status-icon {
    width: 72px;
    height: 72px;
    background: #10b981;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.status-text {
    font-size: 18px;
    font-weight: 600;
    color: #312e81;
}



.filter-item {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  color: #555;
}

.filter-item.active {
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 600;
}



.infra-code-section {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.code-content {
    position: relative;
    z-index: 1;
}


/* Video Card */
.bank-video-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.bank-dashboard-video {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   HEADER - IMPROVED MOBILE
   =================================== */
   
.header {
    background: var(--bg-white);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s ease;
}

@media (min-width: 768px) {
    .header {
        padding: 15px 50px;
        margin-top: 20px;
        border: 1px solid;
        border-radius: 15px;
    }
    
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
    .logo {
        font-size: 24px;
        gap: 10px;
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    animation: rotate 20s linear infinite;
}

@media (min-width: 768px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: none;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-buttons {
    display: none;
    gap: 15px;
}

@media (min-width: 768px) {
    .header-buttons {
        display: flex;
    }
}

.btn {
    padding: 8px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    transition: all var(--transition-fast);
    font-weight: 500;
}

@media (min-width: 768px) {
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.btn-primary {
    background: #000;
    color: rgb(5, 3, 3);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: white;
    color: #000;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION - RESPONSIVE
   =================================== */
/* .hero {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    animation: fadeIn 1s ease;
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 20px 50px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 20px 60px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
    animation: slideUp var(--transition-slow) ease;
    line-height: 1.2;
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 46px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }
}

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

.hero .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    animation: slideUp var(--transition-slow) ease 0.2s backwards;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 16px;
        padding: 0;
    }
} */



        .hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Animated Grid Background */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: floatOrb 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 350px;
            height: 350px;
            background: linear-gradient(45deg, #f093fb, #f5576c);
            bottom: -150px;
            right: -150px;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            top: 50%;
            right: 10%;
            animation-delay: 10s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.9); }
            75% { transform: translate(40px, 20px) scale(1.05); }
        }

        /* Particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: particleFloat 15s infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        /* Container */
        .hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px 60px;
            width: 100%;
        }

        .hero-wrapper {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Content */
        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 100px;
            color: #c4b5fd;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out 0.2s backwards;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: #a78bfa;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeIn 1s ease-out 0.4s backwards;
        }

        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #ffd89b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 5s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .white-text {
            color: #ffffff;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out 0.6s backwards;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out 0.8s backwards;
        }

        .btn {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffffff, #ffffff);
            color: white;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

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

        .arrow {
            display: inline-block;
            transition: transform 0.3s;
        }

        .btn:hover .arrow {
            transform: translateX(5px);
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 40px;
            animation: fadeIn 1s ease-out 1s backwards;
        }

        .stat-item {
            position: relative;
        }

        .stat-number {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #dd1919, #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Right Visual */
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .visual-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Central Circle */
        .central-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 320px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            border-radius: 50%;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 20s linear infinite;
            box-shadow: 
                0 0 60px rgba(102, 126, 234, 0.3),
                inset 0 0 60px rgba(102, 126, 234, 0.1);
        }

        .central-circle::before {
            content: '';
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            animation: rotate 15s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .central-content {
            text-align: center;
            z-index: 2;
        }

        .central-icon {
            font-size: 64px;
            margin-bottom: 16px;
            animation: bounce 3s infinite;
        }

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

        .central-text {
            color: white;
            font-size: 24px;
            font-weight: 800;
        }

        .central-subtext {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-top: 8px;
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: float 6s ease-in-out infinite;
        }

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

        .card-1 {
            top: 0%;
            left: -10%;
            width: 200px;
            animation-delay: 0s;
        }

        .card-2 {
            top: 10%;
            right: -5%;
            width: 180px;
            animation-delay: 1s;
        }

        .card-3 {
            bottom: 15%;
            left: -15%;
            width: 160px;
            animation-delay: 2s;
        }

        .card-4 {
            bottom: 0%;
            right: 0%;
            width: 190px;
            animation-delay: 3s;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 12px;
        }

        .card-title {
            color: white;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .card-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        .card-value {
            color: #a78bfa;
            font-size: 20px;
            font-weight: 800;
            margin-top: 8px;
        }

        /* Mini Chart */
        .mini-chart {
            display: flex;
            gap: 6px;
            align-items: flex-end;
            height: 40px;
            margin-top: 12px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, #667eea, #764ba2);
            border-radius: 4px;
            animation: chartGrow 2s ease-out infinite;
        }

        .chart-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
        .chart-bar:nth-child(2) { height: 85%; animation-delay: 0.2s; }
        .chart-bar:nth-child(3) { height: 70%; animation-delay: 0.4s; }
        .chart-bar:nth-child(4) { height: 95%; animation-delay: 0.6s; }

        @keyframes chartGrow {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            animation: fadeIn 1s ease-out 1.5s backwards;
        }

        .scroll-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-align: center;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            position: relative;
            margin: 0 auto;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s infinite;
        }

        @keyframes scrollWheel {
            0% { top: 8px; opacity: 1; }
            100% { top: 24px; opacity: 0; }
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-content {
                text-align: center;
            }

            .badge {
                margin-left: auto;
                margin-right: auto;
            }

            .cta-buttons {
                justify-content: center;
            }

            .stats {
                justify-content: center;
            }

            .visual-wrapper {
                max-width: 500px;
            }

            .card-1, .card-3 {
                left: 0;
            }

            .card-2, .card-4 {
                right: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                padding: 80px 20px 40px;
            }

            h1 {
                font-size: 2.5rem;
            }

            .stats {
                gap: 30px;
            }

            .central-circle {
                width: 250px;
                height: 250px;
            }

            .central-circle::before {
                width: 220px;
                height: 220px;
            }

            .floating-card {
                padding: 16px;
            }

            .card-1, .card-2, .card-3, .card-4 {
                width: 150px;
            }

            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                padding: 60px 16px 40px;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .stats {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .stat-item {
                text-align: center;
            }

            .visual-wrapper {
                max-width: 350px;
            }

            .central-circle {
                width: 200px;
                height: 200px;
            }

            .central-icon {
                font-size: 48px;
            }

            .floating-card {
                display: none;
            }

            .central-circle::before {
                display: none;
            }
        }
/* ===================================
   DASHBOARD - RESPONSIVE
   =================================== */
.dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 15px;
}

@media (min-width: 768px) {
    .dashboard {
        padding: 30px 20px;
    }
}

@media (min-width: 1024px) {
    .dashboard {
        padding: 40px 20px;
    }
}

.dashboard-header {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-md);
    animation: scaleIn 0.6s ease;
}

@media (min-width: 768px) {
    .dashboard-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 20px;
    }
}

@media (min-width: 1024px) {
    .dashboard-header {
        padding: 30px;
        margin-bottom: 30px;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .dashboard-title {
        gap: 15px;
    }
}

.dashboard-title h2 {
    font-size: 20px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .dashboard-title h2 {
        font-size: 24px;
    }
}

.date {
    color: var(--text-muted);
    font-size: 13px;
}

@media (min-width: 768px) {
    .date {
        font-size: 14px;
    }
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .search-bar {
        width: auto;
        gap: 20px;
    }
}

.search-input {
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    width: 100%;
    font-size: 14px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>') no-repeat 12px center;
    background-size: 18px;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .search-input {
        padding: 12px 20px 12px 45px;
        width: 300px;
        background-position: 15px center;
        background-size: 20px;
    }
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .user-avatar {
        width: 45px;
        height: 45px;
    }
}

.user-avatar:hover {
    transform: scale(1.1);
}

/* ===================================
   BALANCE SECTION - RESPONSIVE
   =================================== */
.balance-section {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .balance-section {
        margin-bottom: 25px;
    }
}

@media (min-width: 1024px) {
    .balance-section {
        margin-bottom: 30px;
    }
}

.section-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 20px;
        gap: 15px;
    }
    
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 20px;
        gap: 10px;
    }
}

.sync-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .sync-badge {
        gap: 8px;
        font-size: 12px;
    }
}

.sync-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.btn-sync {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 12px;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .btn-sync {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.btn-sync:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-sync:active {
    animation: syncSpin 0.5s ease;
}

@keyframes syncSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===================================
   CARDS SLIDER - FULLY RESPONSIVE
   =================================== */
.cards-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.cards-slider {
    display: flex;
    gap: 15px;
    transition: transform var(--transition-normal) ease;
    padding: 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cards-slider::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .cards-slider {
        gap: 20px;
        overflow-x: hidden;
    }
}

.balance-card {
    flex: 0 0 calc(100% - 30px);
    min-width: calc(100% - 30px);
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    animation: slideInCard 0.6s ease forwards;
    opacity: 0;
    scroll-snap-align: center;
}

@media (min-width: 480px) {
    .balance-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
        padding: 25px;
        border-radius: 18px;
    }
}

@media (min-width: 768px) {
    .balance-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
        padding: 25px;
    }
}

@media (min-width: 1024px) {
    .balance-card {
        flex: 0 0 calc(33.333% - 14px);
        padding: 30px;
        border-radius: 20px;
    }
}

@keyframes slideInCard {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.balance-card:nth-child(1) { animation-delay: 0.1s; }
.balance-card:nth-child(2) { animation-delay: 0.2s; }
.balance-card:nth-child(3) { animation-delay: 0.3s; }
.balance-card:nth-child(4) { animation-delay: 0.4s; }
.balance-card:nth-child(5) { animation-delay: 0.5s; }
.balance-card:nth-child(6) { animation-delay: 0.6s; }

.balance-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .card-header {
        margin-bottom: 20px;
    }
}

.card-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .card-info {
        gap: 12px;
    }
}

.bank-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
    .bank-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        font-size: 24px;
    }
}

.balance-card:hover .bank-icon {
    transform: rotate(10deg) scale(1.1);
}

.card-details h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .card-details h3 {
        font-size: 14px;
    }
}

.bank-count {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
}

@media (min-width: 768px) {
    .bank-count {
        font-size: 12px;
    }
}

.card-menu {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

@media (min-width: 768px) {
    .card-menu {
        font-size: 20px;
    }
}

.card-menu:hover {
    color: var(--text-dark);
}

.balance-amount {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .balance-amount {
        font-size: 32px;
        gap: 10px;
    }
}

.balance-amount .currency {
    font-size: 20px;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .balance-amount .currency {
        font-size: 24px;
    }
}

.eye-icon {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 18px;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .eye-icon {
        font-size: 20px;
    }
}

.eye-icon:hover {
    color: var(--text-dark);
    transform: scale(1.2);
}

.card-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e0e7ff;
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .card-badge {
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 11px;
        margin-top: 10px;
    }
}

.account-number {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

@media (min-width: 768px) {
    .account-number {
        font-size: 12px;
    }
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .slider-controls {
        gap: 10px;
        margin-top: 30px;
    }
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

.slider-dot:hover {
    background: #bbb;
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .slider-dot.active {
        width: 30px;
        border-radius: 5px;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all var(--transition-fast);
    z-index: 10;
    font-size: 20px;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .slider-arrow {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -15px;
}

@media (min-width: 768px) {
    .slider-arrow.prev {
        left: -20px;
    }
}

.slider-arrow.next {
    right: -15px;
}

@media (min-width: 768px) {
    .slider-arrow.next {
        right: -20px;
    }
}

/* ===================================
   STATS SECTION - RESPONSIVE
   =================================== */
.stats-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
    animation: slideUp var(--transition-slow) ease;
}

@media (min-width: 640px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
}

.stat-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .stat-card {
        border-radius: 15px;
        padding: 20px 30px;
        gap: 15px;
    }
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        font-size: 24px;
    }
}

.stat-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .stat-info h4 {
        font-size: 28px;
        margin-bottom: 4px;
    }
}

.stat-info p {
    font-size: 12px;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .stat-info p {
        font-size: 13px;
    }
}

/* ===================================
   BANK LOGOS MARQUEE
   =================================== */
/* ================================
   Bank Logos Infinite Scroll
================================ */

.bank-logos {
    margin-top: 30px;
    padding: 15px 0;
    overflow: hidden;
    width: 100%;
    position: relative;

    /* Optional fintech fade edges */
    mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}

/* Desktop spacing */
@media (min-width: 768px) {
    .bank-logos {
        margin-top: 40px;
        padding: 20px 0;
    }
}

/* Moving track */
.logos-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;                 /* 🔑 Critical for infinite loop */
    animation: scroll 30s linear infinite;
}

/* Desktop gap */
@media (min-width: 768px) {
    .logos-track {
        gap: 60px;
    }
}

/* Infinite scroll keyframes */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Individual logo */
.bank-logo {
    height: 24px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

/* Desktop logo size */
@media (min-width: 768px) {
    .bank-logo {
        height: 30px;
    }
}

/* Hover effect */
.bank-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

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


/* ===================================
   HERO SECTION (Trust) - RESPONSIVE
   =================================== */
.hero-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn var(--transition-slow) ease;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 80px 50px;
    }
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 42px;
        margin-bottom: 15px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 60px;
        padding: 0;
    }
}

/* ===================================
   MAIN CONTAINER - RESPONSIVE
   =================================== */
.main-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
    position: relative;
}

@media (min-width: 1024px) {
    .main-container {
        flex-direction: row;
        gap: 30px;
        padding: 0 50px 80px;
    }
}

/* ===================================
   FILTER SIDEBAR - RESPONSIVE
   =================================== */
.filter-sidebar {
    width: 100%;
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px);
}

@media (min-width: 1024px) {
    .filter-sidebar {
        width: 320px;
        border-radius: 20px;
        padding: 30px;
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.filter-sidebar.active {
    opacity: 1;
    transform: translateX(0);
}

.filter-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

@media (min-width: 768px) {
    .filter-header {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

.filter-item {
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    animation: slideInLeft var(--transition-normal) ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .filter-item {
        padding: 16px 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.filter-item:nth-child(1) { animation-delay: 0.1s; }
.filter-item:nth-child(2) { animation-delay: 0.2s; }
.filter-item:nth-child(3) { animation-delay: 0.3s; }
.filter-item:nth-child(4) { animation-delay: 0.4s; }
.filter-item:nth-child(5) { animation-delay: 0.5s; }
.filter-item:nth-child(6) { animation-delay: 0.6s; }
.filter-item:nth-child(7) { animation-delay: 0.7s; }

.filter-item:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.filter-item.active {
    color: var(--primary-color);
    font-weight: 600;
    padding-left: 10px;
}

.filter-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* ===================================
   CONTENT AREA
   =================================== */
.content-area {
    flex: 1;
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   DASHBOARD SECTIONS - RESPONSIVE
   =================================== */
.dashboard-section {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    display: none;
}

@media (min-width: 768px) {
    .dashboard-section {
        border-radius: 18px;
        padding: 30px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1024px) {
    .dashboard-section {
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
    }
}

.dashboard-section.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

.highlight-text {
    color: var(--primary-color);
}

/* ===================================
   FEATURE PILLS - RESPONSIVE
   =================================== */
.feature-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .feature-pills {
        gap: 15px;
        margin-bottom: 30px;
    }
}

.pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f0fdf4;
    border-radius: 20px;
    font-size: 12px;
    color: #166534;
    animation: popIn 0.4s ease forwards;
    opacity: 0;
    transform: scale(0.8);
}

@media (min-width: 768px) {
    .pill {
        gap: 8px;
        padding: 10px 18px;
        border-radius: 25px;
        font-size: 13px;
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pill:nth-child(1) { animation-delay: 0.1s; }
.pill:nth-child(2) { animation-delay: 0.2s; }
.pill:nth-child(3) { animation-delay: 0.3s; }

.pill .check-icon {
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
}

@media (min-width: 768px) {
    .pill .check-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* ===================================
   CONNECTED BANKS - RESPONSIVE
   =================================== */
.connected-banks {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .connected-banks {
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .connected-banks {
        padding: 30px;
    }
}

.banks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width: 768px) {
    .banks-header {
        margin-bottom: 25px;
        gap: 15px;
    }
}

.banks-title {
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .banks-title {
        font-size: 20px;
    }
}

.check-balance-btn {
    padding: 8px 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .check-balance-btn {
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 13px;
        gap: 8px;
    }
}

.check-balance-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ===================================
   BANK CARDS GRID - RESPONSIVE
   =================================== */
.bank-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 640px) {
    .bank-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bank-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-fast);
    cursor: pointer;
    animation: scaleIn var(--transition-normal) ease forwards;
    opacity: 0;
    transform: scale(0.9);
}

@media (min-width: 768px) {
    .bank-card {
        border-radius: 15px;
        padding: 25px;
    }
}

.bank-card:nth-child(1) { animation-delay: 0.1s; }
.bank-card:nth-child(2) { animation-delay: 0.2s; }
.bank-card:nth-child(3) { animation-delay: 0.3s; }

.bank-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.bank-name {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .bank-name {
        font-size: 14px;
    }
}

.bank-account {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .bank-account {
        font-size: 12px;
    }
}

.bank-balance {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

@media (min-width: 768px) {
    .bank-balance {
        font-size: 22px;
    }
}

/* ===================================
   CHOOSE BANK SECTION - RESPONSIVE
   =================================== */
.choose-bank-section {
    background: #fafafa;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .choose-bank-section {
        border-radius: 15px;
        padding: 40px;
    }
}

.choose-bank-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .choose-bank-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.bank-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
}

@media (min-width: 640px) {
    .bank-selection {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.bank-option {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    animation: floatIn 0.6s ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .bank-option {
        border-radius: 15px;
    }
}

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

.bank-option:nth-child(1) { animation-delay: 0.1s; }
.bank-option:nth-child(2) { animation-delay: 0.2s; }
.bank-option:nth-child(3) { animation-delay: 0.3s; }
.bank-option:nth-child(4) { animation-delay: 0.4s; }

.bank-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.bank-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .bank-option-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        font-size: 28px;
        margin-bottom: 10px;
    }
}

.bank-option-name {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

@media (min-width: 768px) {
    .bank-option-name {
        font-size: 12px;
    }
}

/* ===================================
   API SECTION - RESPONSIVE
   =================================== */
.api-section {
    text-align: center;
    padding: 50px 20px;
    background: #fafafa;
    animation: fadeIn 1s ease;
}

@media (min-width: 768px) {
    .api-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .api-section {
        padding: 80px 50px;
    }
}

.section-label {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .section-label {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: slideUp var(--transition-slow) ease;
}

@media (min-width: 480px) {
    .main-title {
        font-size: 38px;
    }
}

@media (min-width: 768px) {
    .main-title {
        font-size: 46px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 52px;
    }
}

.subtitle {
    color: var(--text-light);
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 35px;
    animation: slideUp var(--transition-slow) ease 0.2s backwards;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 16px;
        margin: 0 auto 50px;
        padding: 0;
    }
}

/* ===================================
   FEATURES GRID - RESPONSIVE
   =================================== */
/* Section Styling */
.container {
    /* padding: 80px 20px; */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 42px;
        
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Feature Card */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

/* Animation Triggers */
.feature-card[data-animate="slide-up"] {
    animation: slideUpFade 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

/* Icon Wrapper */
.feature-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    opacity: 0.5;
    filter: blur(15px);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.8;
}

/* Feature Number */
.feature-number {
    /* font-size: 48px; */
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
    transition: all 0.4s ease;
    font-size: 20px;
}

.feature-card:hover .feature-number {
    color: #667eea;
    transform: scale(1.1);
}

/* Feature Content */
.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: #667eea;
}

.feature-content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #667eea30;
    transition: all 0.3s ease;
}

.feature-card:hover .tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-card:hover .feature-icon {
    animation: pulse 1.5s infinite;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-number {
        font-size: 36px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
}

/* Smooth scrolling reveal */
.feature-card {
    will-change: transform, opacity;
}

/* ===================================
   TRANSACTION FLOW - RESPONSIVE
   =================================== */
.transaction-flow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    position: relative;
}

@media (min-width: 768px) {
    .transaction-flow {
        flex-direction: row;
        gap: 30px;
        margin-top: 30px;
    }
}

.bank-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 13px;
    animation: bounceIn var(--transition-slow) ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .bank-node {
        gap: 10px;
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 14px;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bank-node:nth-child(1) { animation-delay: 0.2s; }
.bank-node:nth-child(3) { animation-delay: 0.4s; }

.flow-line {
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
    position: relative;
    animation: growWidth 1s ease 0.3s forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@media (min-width: 768px) {
    .flow-line {
        width: 2px;
        height: 80px;
        transform-origin: top;
        transform: scaleY(0);
        animation: growHeight 1s ease 0.3s forwards;
    }
}

@keyframes growWidth {
    to {
        transform: scaleX(1);
    }
}

@keyframes growHeight {
    to {
        transform: scaleY(1);
    }
}

.amount-box {
    padding: 15px 25px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .amount-box {
        padding: 20px 30px;
        border-radius: 15px;
        font-size: 24px;
    }
}

.wallet-button {
    padding: 12px 25px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideUp 1s ease 0.6s backwards;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

@media (min-width: 768px) {
    .wallet-button {
        padding: 15px 30px;
        border-radius: 15px;
        font-size: 14px;
        gap: 10px;
    }
}

.wallet-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* ===================================
   DEVELOPER INFRASTRUCTURE
   =================================== */
.dev-infra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .dev-infra {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .dev-infra {
        gap: 30px;
        margin-top: 30px;
    }
}

.infra-item {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-fast);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .infra-item {
        padding: 20px;
        border-radius: 15px;
    }
}

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

.infra-item:nth-child(1) { animation-delay: 0.1s; }
.infra-item:nth-child(2) { animation-delay: 0.2s; }
.infra-item:nth-child(3) { animation-delay: 0.3s; }

.infra-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.infra-label {
    font-size: 13px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .infra-label {
        font-size: 14px;
    }
}

/* ===================================
   DONUT CHART
   =================================== */
.donut-chart {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(
        var(--success-color) 0deg 120deg,
        #3b82f6 120deg 240deg,
        var(--warning-color) 240deg 300deg,
        var(--danger-color) 300deg 360deg
    );
    position: relative;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .donut-chart {
        width: 200px;
        height: 200px;
    }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .chart-center {
        width: 140px;
        height: 140px;
    }
}

.chart-amount {
    font-size: 18px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .chart-amount {
        font-size: 20px;
    }
}

.chart-date {
    font-size: 11px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .chart-date {
        font-size: 12px;
    }
}

/* ===================================
   INDUSTRY SECTION - RESPONSIVE
   =================================== */
.industry-section {
    padding: 50px 20px;
    background: white;
}

@media (min-width: 768px) {
    .industry-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .industry-section {
        padding: 80px 50px;
    }
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .industry-tabs {
        gap: 15px;
        margin-bottom: 60px;
    }
}

.tab {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all var(--transition-fast);
    animation: popIn var(--transition-normal) ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .tab {
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 14px;
    }
}

.tab:nth-child(1) { animation-delay: 0.1s; }
.tab:nth-child(2) { animation-delay: 0.2s; }
.tab:nth-child(3) { animation-delay: 0.3s; }
.tab:nth-child(4) { animation-delay: 0.4s; }
.tab:nth-child(5) { animation-delay: 0.5s; }
.tab:nth-child(6) { animation-delay: 0.6s; }

.tab.active {
    background: #000;
    color: white;
    border-color: #000;
}

.tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===================================
   E-COMMERCE FLOW - RESPONSIVE
   =================================== */
.ecommerce-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ecommerce-flow {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.flow-left {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    animation: slideInLeft var(--transition-slow) ease;
}

@media (min-width: 768px) {
    .flow-left {
        padding: 35px;
        border-radius: 18px;
    }
}

@media (min-width: 1024px) {
    .flow-left {
        padding: 40px;
        border-radius: 20px;
    }
}

.flow-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .flow-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
}

.flow-title .purple {
    color: var(--primary-color);
}

.flow-subtitle {
    color: var(--text-light);
    font-size: 14px;
}

@media (min-width: 768px) {
    .flow-subtitle {
        font-size: 16px;
    }
}

.flow-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInRight var(--transition-slow) ease;
}

@media (min-width: 768px) {
    .flow-right {
        gap: 20px;
    }
}

.flow-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .flow-card {
        padding: 25px;
        border-radius: 15px;
        gap: 15px;
    }
}

.flow-card:hover {
    background: #ede9fe;
    transform: translateX(10px);
}

.flow-card::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    display: none;
}

@media (min-width: 1024px) {
    .flow-card::before {
        display: block;
        left: -20px;
        width: 40px;
    }
}

.flow-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 18px;
}

@media (min-width: 768px) {
    .flow-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 20px;
    }
}

.flow-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .flow-content h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

.flow-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .flow-content p {
        font-size: 13px;
    }
}

/* ===================================
   INFRASTRUCTURE CODE SECTION
   =================================== */
.infra-code-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #4c1d95, #5b21b6);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .infra-code-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .infra-code-section {
        padding: 80px 50px;
    }
}

.infra-code-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
    .infra-code-section::before {
        width: 500px;
        height: 500px;
    }
}

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

.code-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.code-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    animation: slideUp var(--transition-slow) ease;
}

@media (min-width: 480px) {
    .code-title {
        font-size: 38px;
    }
}

@media (min-width: 768px) {
    .code-title {
        font-size: 42px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .code-title {
        font-size: 48px;
    }
}

.code-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideUp var(--transition-slow) ease 0.2s backwards;
}

@media (min-width: 768px) {
    .code-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

.code-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .code-tabs {
        gap: 15px;
        margin-bottom: 40px;
    }
}

.code-tab {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    font-size: 13px;
}

@media (min-width: 768px) {
    .code-tab {
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 14px;
    }
}

.code-tab:hover,
.code-tab.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.code-block {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.8;
    color: #a5b4fc;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: codeAppear 1s ease;
    overflow-x: auto;
}

@media (min-width: 768px) {
    .code-block {
        border-radius: 20px;
        padding: 40px;
        font-size: 14px;
    }
}

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

.code-keyword {
    color: #c084fc;
}

.code-string {
    color: #86efac;
}

.code-function {
    color: #fbbf24;
}

/* ===================================
   AI CFO SECTION - RESPONSIVE
   =================================== */
.ai-cfo-section {
    padding: 50px 20px;
    background: #fafafa;
}

@media (min-width: 768px) {
    .ai-cfo-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .ai-cfo-section {
        padding: 80px 50px;
    }
}

.ai-cfo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ai-chat-box {
    background: var(--primary-gradient);
    border-radius: 20px;
    padding: 30px 20px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    animation: slideUp var(--transition-slow) ease;
}

@media (min-width: 768px) {
    .ai-chat-box {
        border-radius: 25px;
        padding: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .ai-chat-box {
        padding: 50px;
    }
}

.ai-chat-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .ai-chat-box::before {
        width: 200px;
        height: 200px;
    }
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

@media (min-width: 768px) {
    .ai-header {
        margin-bottom: 30px;
    }
}

.ai-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .ai-logo {
        gap: 15px;
    }
}

.ai-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

@media (min-width: 768px) {
    .ai-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        font-size: 24px;
    }
}

.ai-name {
    font-size: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .ai-name {
        font-size: 24px;
    }
}

.chat-bubble {
    background: white;
    color: var(--text-dark);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: bubbleIn 0.6s ease;
}

@media (min-width: 768px) {
    .chat-bubble {
        padding: 20px 25px;
        border-radius: 15px;
        margin-bottom: 25px;
        font-size: 14px;
    }
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ai-response {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .ai-response {
        padding: 25px;
        border-radius: 15px;
    }
}

.response-content {
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .response-content {
        margin-bottom: 20px;
    }
}

.response-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .response-features {
        gap: 30px;
    }
}

.response-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .response-feature {
        gap: 10px;
        font-size: 13px;
    }
}

.check-circle {
    width: 18px;
    height: 18px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .check-circle {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* ===================================
   SMART FEATURES - RESPONSIVE
   =================================== */
.smart-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 1024px) {
    .smart-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.smart-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .smart-card {
        border-radius: 18px;
        padding: 35px;
    }
}

@media (min-width: 1024px) {
    .smart-card {
        border-radius: 20px;
        padding: 40px;
    }
}

.smart-card:nth-child(1) { animation-delay: 0.1s; }
.smart-card:nth-child(2) { animation-delay: 0.2s; }

.smart-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.smart-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .smart-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.smart-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .smart-card p {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

.smart-features-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .smart-features-list {
        gap: 25px;
    }
}

.smart-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .smart-feature-item {
        gap: 10px;
        font-size: 13px;
    }
}

/* ===================================
   SECURITY SECTION - RESPONSIVE
   =================================== */
.security-section {
    padding: 50px 20px;
    background: #0f0f0f;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .security-section {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .security-section {
        padding: 80px 50px;
    }
}

.security-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: patternMove 20s linear infinite;
}


#finance-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    color: #fff;
}

/* Background Video */
.finance-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 21%;
}

/* Dark Overlay */
.finance-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 1;
}

/* Content above video */
.finance-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: auto;
}


#finance-cta {
    /* background: url("./img/Found\ on\ Cosmos.gif") center / cover no-repeat; */
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.finance-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.finance-cta-content {
    z-index: 2;
    max-width: 800px;
    padding: 0px;
}

.finance-cta-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.finance-cta-text {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.finance-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.finance-cta-btn:hover {
    background: #084298;
    transform: translateY(-2px);
}



.filter-item {
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.filter-item.active {
    background-color: #1151b8;
    color: #fff;
    font-weight: 600;
}


@media (min-width: 768px) {
    .security-pattern {
        background-size: 30px 30px;
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.security-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.security-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    animation: slideUp var(--transition-slow) ease;
}

@media (min-width: 480px) {
    .security-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .security-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .security-title {
        font-size: 42px;
    }
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.security-item {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .security-item {
        gap: 15px;
        padding: 25px;
        border-radius: 15px;
    }
}

.security-item:nth-child(1) { animation-delay: 0.1s; }
.security-item:nth-child(2) { animation-delay: 0.2s; }
.security-item:nth-child(3) { animation-delay: 0.3s; }
.security-item:nth-child(4) { animation-delay: 0.4s; }
.security-item:nth-child(5) { animation-delay: 0.5s; }
.security-item:nth-child(6) { animation-delay: 0.6s; }

.security-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
}

.security-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 18px;
}

@media (min-width: 768px) {
    .security-icon {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
}

.security-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .security-text h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

.security-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .security-text p {
        font-size: 13px;
    }
}

.compliance-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .compliance-badges {
        gap: 20px;
        margin-top: 40px;
    }
}

.badge {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .badge {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 14px;
    }
}

.badge:nth-child(1) { animation-delay: 0.7s; }
.badge:nth-child(2) { animation-delay: 0.8s; }
.badge:nth-child(3) { animation-delay: 0.9s; }
.badge:nth-child(4) { animation-delay: 1s; }

/* ===================================
   CTA SECTION - RESPONSIVE
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 80px 40px;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 100px 50px;
    }
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path fill="%23ffffff" d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z"/></svg>') repeat-x;
    animation: wave 15s linear infinite;
    opacity: 0.1;
}

@media (min-width: 768px) {
    .wave-animation {
        height: 100px;
    }
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1200px 0;
    }
}

.cta-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    animation: slideUp var(--transition-slow) ease;
}

@media (min-width: 480px) {
    .cta-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 38px;
        margin-bottom: 15px;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 42px;
    }
}

.cta-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: slideUp var(--transition-slow) ease 0.2s backwards;
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

.cta-button {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-fast);
    animation: slideUp var(--transition-slow) ease 0.4s backwards;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
        border-radius: 30px;
    }
}

.cta-button:hover {
    background: #084298;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

/* ===================================
   FOOTER - RESPONSIVE
   =================================== */

.footer {
    background: #0F1728;
    padding: 40px 20px 20px;
    border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .footer {
        padding: 50px 40px 25px;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 60px 50px 30px;
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
}

.footer-brand {
    animation: fadeIn var(--transition-slow) ease;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 20px;
        font-size: 24px;
    }
}

.footer-description {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .footer-links li {
        margin-bottom: 12px;
    }
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-fast);
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 14px;
    }
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 12px;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
    }
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .social-links {
        gap: 15px;
        margin-top: 20px;
    }
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    background: var(--secondary-color);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* Reduce animations on low-power devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU acceleration for smooth animations */
.balance-card,
.stat-card,
.bank-card,
.feature-card,
.smart-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling for mobile */
html {
    -webkit-overflow-scrolling: touch;
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}



  .mscursor-cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    top: 0;
    left: 0;
    z-index: 9999999999999999;  
  }

  .mscursor-difference{
    mix-blend-mode: difference;
  }
  
  .mscursor-circle {
      transform-origin: center;
      position: absolute;
      display: block;
      width: 16px;
      height: 16px;
      border-radius: 20px;
  }

  .mscursor-border-transform{
    animation: border-transform 3s linear infinite;
  }
  
  @keyframes border-transform {
    0%,
    100% {
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    14% {
      border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
      border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
      border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
      border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
      border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
      border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
  }
  
  .mscursor-scale{
    transition: .5s ease;
    transform: scale(1.6);
  }
  
  .mscursor-scale-outline{
    transform:scale(1.9);
    background-color: transparent !important;
  }
  
  
  .mscursor-nocursor{
    cursor:none!important;
  }