:root {
            --primary: #0055ff;
            --secondary: #cdcdfd;
            --bg-light: #f8f9fa;
            --bg-dark: #0a0a0a;
            --text-light: #333;
            --text-dark: #fff;
            --card-light: rgba(255,255,255,0.8);
            --card-dark: rgba(255,255,255,0.1);
			--gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --shadow: 0 10px 30px rgba(0, 85, 255, 0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
		
		.fs-12{
			font-size: 12px !important;
		}

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        body.dark-mode {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, #16213e 100%);
            color: var(--text-dark);
        }
		
		.navbar {
		  background-color: var(--bg-light) !important;
		  transition: background-color 0.3s;
		}

		/* override in dark mode */
		.dark-mode .navbar {
		  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, #16213e 100%);
		}

        .hero-section { min-height: 100vh; }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .btn-primary-custom:hover { transform: translateY(-2px); color: white; }

        .btn-secondary-custom {
            background: var(--card-light);
            border: 2px solid var(--secondary);
            padding: 1rem 2rem;
            border-radius: 50px;
            color: var(--text-light);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .dark-mode .btn-secondary-custom {
            background: var(--card-dark);
            color: var(--text-dark);
        }

        .btn-secondary-custom:hover { transform: translateY(-2px); }


        .biometric-display {
            position: relative;
            width: 400px;
            height: 400px;
            margin: 0 auto;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,85,255,0.1), transparent 70%);
            border: 2px solid rgba(0,85,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); border-color: rgba(0,85,255,0.3); }
            50% { transform: scale(1.05); border-color: rgba(0,85,255,0.6); }
        }

        .biometric-methods {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .method-icon {
            position: absolute;
            font-size: 2rem;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 50%;
            background: var(--card-light);
            border: 2px solid var(--secondary);
        }
        .dark-mode .method-icon { background: var(--card-dark); }

        .method-icon:hover { transform: scale(1.1); color: var(--secondary); }

        .method-icon.active {
            color: var(--secondary);
            box-shadow: 0 0 20px rgba(0,85,255,0.5);
        }

        .fingerprint { top: 5%; left: 50%; transform: translateX(-50%); }
        .face { top: 50%; right: 5%; transform: translateY(-50%); }
        .voice { bottom: 30%; left: 5%; transform: translateY(-50%); }
        .payment { bottom: 5%; left: 50%; transform: translateX(-50%); }

        .center-display {
            font-size: 6rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .scan-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
            top: 50%;
            animation: scan 2s infinite;
        }

        @keyframes scan {
            0% { top: 20%; opacity: 0; }
            50% { opacity: 1; }
            100% { top: 80%; opacity: 0; }
        }

        .security-indicator {
            background: var(--card-light);
            border: 1px solid var(--secondary);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .dark-mode .security-indicator { background: var(--card-dark); }

        .security-indicator:hover { transform: translateY(-2px); }

        .security-indicator i {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .stats-badge {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            margin: 0.25rem;
            display: inline-block;
			font-size: 12px;
        }

        @media (max-width: 768px) {
            .biometric-display { width: 300px; height: 300px; }
            .center-display { font-size: 4rem; }
            .method-icon { font-size: 1.5rem; }
        }
		
		
		/* How It Works Section */
#howit {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Updated How It Works Section for Dark Mode */
body.dark-mode #howit {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

#howit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

body.dark-mode #howit::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.15;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .section-title p {
    color: #ccc;
}

.how-it-works-container {
    position: relative;
    z-index: 2;
}

/* Mobile-first tabs */
.tab-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 60px;
    padding: 8px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

body.dark-mode .tab-buttons {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    flex: 1;
    padding: 5px 10px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

body.dark-mode .tab-button {
    color: var(--text-dark);
}

.tab-button.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.tab-button:hover:not(.active) {
    background: rgba(0, 85, 255, 0.1);
}

body.dark-mode .tab-button:hover:not(.active) {
    background: rgba(0, 85, 255, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.steps-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .steps-container {
    background: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 85, 255, 0.1);
}

body.dark-mode .step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.15);
    border-color: var(--primary);
}

body.dark-mode .step-item:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.25);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 24px;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.step-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

body.dark-mode .step-content h5 {
    color: var(--text-dark);
}

.step-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

body.dark-mode .step-content p {
    color: #ccc;
}

.step-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 85, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

body.dark-mode .step-icon {
    background: rgba(0, 85, 255, 0.2);
}

/* Desktop view */
@media (min-width: 768px) {
    .tab-buttons {
        display: none;
    }

    .tab-content {
        display: block !important;
    }

    .desktop-layout {
        display: flex;
        gap: 40px;
    }

    .desktop-layout .steps-container {
        flex: 1;
    }

    .desktop-layout .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .desktop-layout .section-header h4 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .desktop-layout .section-header .subtitle {
        color: #666;
        font-size: 1.1rem;
    }

    body.dark-mode .desktop-layout .section-header .subtitle {
        color: #ccc;
    }

    /* Reorder for desktop - Business first */
    .business-section {
        order: 1;
    }

    .workers-section {
        order: 2;
    }
}

/* Mobile specific */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .steps-container {
        padding: 30px 20px;
    }

    .step-item {
        padding: 16px;
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 16px;
    }

    .step-content h5 {
        font-size: 1.1rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

body.dark-mode .how-it-works-container{
	position: relative;
    z-index: 2;
}
body.dark-mode .steps-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}
body.dark-mode .step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
body.dark-mode .step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.25);
}
body.dark-mode .step-content h5 {
    color: #ffffff;
}
body.dark-mode .step-content p {
    color: #bbbbbb;
}
body.dark-mode .section-title p {
    color: #cccccc;
}
body.dark-mode .step-icon {
    background: rgba(0, 85, 255, 0.2);
}
body.dark-mode .tab-buttons {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
body.dark-mode .tab-button {
    color: #ffffff;
}
body.dark-mode .tab-button:hover:not(.active) {
    background: rgba(0, 85, 255, 0.2);
}