* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    /* Background Image Setup */
    background-image: url('assets/bg-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    background-color: #060b14;
    color: #e2e8f0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dark Overlay for Text Legibility */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 11, 20, 0.8);
    z-index: -1;
    pointer-events: none;
	display: none;
}

.text-blue { color: #3b82f6; }

/* Navbar */
.navbar {
    height: 80px;
    background: rgba(6, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.app-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active-link {
    color: #ffffff;
}

/* Buttons */
.primary-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.back-btn {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.back-btn:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.full-width { width: 100%; }

/* Pages */
.page {
    display: none;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease-in-out;
}

.page.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
	display: none;
}

.hero-subtitle {
    color: #3b82f6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Grids & Cards */
.feature-grid, .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card, .card, .panel {
    background: rgba(11, 19, 37, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Card Colors */
.banking-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.2); }
.accounting-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.crypto-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }

.feature-card h2, .card h2 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p, .card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Learn More Page */
.learn-more-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.learn-more-header h1 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.learn-more-header p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: rgba(11, 19, 37, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.border-blue { border-top: 4px solid #3b82f6; }
.border-purple { border-top: 4px solid #8b5cf6; }
.border-green { border-top: 4px solid #10b981; }

.info-card h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    color: #e2e8f0;
    margin: 24px 0 12px;
}

.info-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-card ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.info-card ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.summary-text {
    font-style: italic;
    color: #cbd5e1 !important;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    margin-top: 25px;
}

/* Upload Zone */
.upload-header {
    text-align: center;
    margin-bottom: 48px;
}

.upload-header h1 { font-size: 36px; color: #ffffff; margin-bottom: 12px; }
.upload-header p { color: #94a3b8; font-size: 16px; }

.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.upload-zone:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.hidden-input { display: none; }

.file-label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-weight: 500;
}

.file-label small { color: #94a3b8; font-weight: 400; }
.upload-icon { font-size: 32px; color: #3b82f6; }
.scan-btn { width: 100%; }

/* Contact Form */
.panel { max-width: 600px; margin: 0 auto; }
.panel h1 { margin-bottom: 8px; }
.panel > p { margin-bottom: 24px; color: #94a3b8; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #e2e8f0;
}

.contact-form input, .contact-form textarea {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Results Box */
.results {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.results h2 { color: #ffffff; margin-bottom: 20px; }

pre {
    background: #030712;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    color: #a7f3d0;
    font-size: 14px;
    overflow-x: auto;
    min-height: 150px;
}

.download-btn {
    display: inline-block;
    margin-top: 20px;
    background: #10b981;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.download-btn:hover { background: #059669; }

/* Responsive Adjustments for Mobile & Tablets */
@media (max-width: 900px) {
    .navbar { flex-direction: column; height: auto; padding: 20px; gap: 15px; }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 { font-size: 40px; }
    
    .hero-buttons { 
        justify-content: center; 
    }
    
    .hero-visual img {
        max-width: 80%;
    }
}