﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1e293b;
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            background: #0f172a;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 700;
        }
        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: transparent;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
        }
        .nav-logo-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }
        .nav-logo-icon i {
            color: #22d3ee;
            font-size: 1.1rem;
        }
        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-btn {
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid #334155;
            background: transparent;
            transition: all 0.2s;
        }
        .nav-btn:hover {
            background: rgba(255,255,255,0.05);
            border-color: #475569;
        }
        .nav-btn.primary {
            background: #22c55e;
            border-color: #22c55e;
            color: #fff;
        }
        .nav-btn.primary:hover {
            background: #16a34a;
            border-color: #16a34a;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            background: #0f172a;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
        }
        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-tagline {
            font-size: 1.75rem;
            font-weight: 500;
            font-style: italic;
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 99, 235, 0.2);
            border: 1px solid rgba(37, 99, 235, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            color: #93c5fd;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 24px;
        }
        .hero-badge i {
            font-size: 0.9rem;
        }
        .hero h1 {
            color: #fff;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }
        .hero h1 span {
            display: block;
            background: linear-gradient(135deg, #2dd4bf 0%, #22d3ee 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-description {
            color: #94a3b8;
            font-size: 1.05rem;
            margin-bottom: 32px;
            max-width: 480px;
            line-height: 1.7;
        }
        .hero-launch-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            padding: 10px 18px;
            border-radius: 50px;
            color: #4ade80;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .hero-launch-badge .dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        /* Dashboard Card */
        .hero-dashboard-wrapper {
            position: relative;
        }
        .hero-dashboard {
            background: #fff;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
            overflow: hidden;
        }
        .dashboard-window-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }
        .window-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .window-dot.red { background: #ef4444; }
        .window-dot.yellow { background: #fbbf24; }
        .window-dot.green { background: #22c55e; }
        .dashboard-content {
            padding: 24px;
        }
        .dashboard-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }
        .finance-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #16a34a;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .budget-section h4,
        .cashflow-section h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 16px;
        }
        .donut-chart {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: conic-gradient(#22c55e 0% 75%, #e2e8f0 75% 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        .donut-inner {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
        }
        .cashflow-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }
        .cashflow-label {
            font-size: 0.85rem;
            color: #64748b;
        }
        .cashflow-value {
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e293b;
        }
        .cashflow-bar {
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            margin-top: 8px;
            overflow: hidden;
        }
        .cashflow-bar-fill {
            height: 100%;
            border-radius: 4px;
        }
        .cashflow-bar-fill.green { background: #22c55e; }
        .cashflow-bar-fill.orange { background: #f97316; }
        .budget-totals {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        .budget-total-item p {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-bottom: 4px;
        }
        .budget-total-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
        }
        .budget-total-item h3.red {
            color: #ef4444;
        }
        .dashboard-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .pagination-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #cbd5e1;
        }
        .pagination-dot.active {
            width: 24px;
            border-radius: 4px;
            background: #3b82f6;
        }
        .realtime-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 12px 16px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e293b;
        }
        .realtime-badge i {
            color: #2563eb;
        }
        /* Platform Section */
        .platform {
            padding: 100px 0;
            background: #fff;
        }
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
        }
        .section-header h2 span {
            color: #2563eb;
        }
        .section-header p {
            color: #64748b;
            font-size: 1.1rem;
        }
        .platform-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .platform-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s;
        }
        .platform-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }
        .platform-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.75rem;
            color: #2563eb;
        }
        .platform-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
        }
        .platform-card p {
            color: #64748b;
            font-size: 0.9rem;
        }
        .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 40px;
        }
        .learn-more:hover {
            color: #2563eb;
        }
        
        /* Advantage Section */
        .advantage {
            padding: 100px 0;
            background: #f8fafc;
        }
        .advantage-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 99, 235, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            color: #2563eb;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 16px;
        }
        .advantage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .advantage-left h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 24px;
        }
        .advantage-left h2 span {
            color: #2563eb;
        }
        .advantage-features {
            list-style: none;
        }
        .advantage-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .advantage-features li:last-child {
            border-bottom: none;
        }
        .advantage-features i {
            color: #22c55e;
            font-size: 1.25rem;
            margin-top: 2px;
        }
        .advantage-features span {
            color: #475569;
            font-size: 0.95rem;
        }
        .comparison-table {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .comparison-header {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            background: #2563eb;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .comparison-header > div {
            padding: 16px;
            text-align: center;
        }
        .comparison-header > div:first-child {
            text-align: left;
        }
        .comparison-row {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            border-bottom: 1px solid #f1f5f9;
        }
        .comparison-row > div {
            padding: 14px 16px;
            font-size: 0.85rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .comparison-row > div:first-child {
            text-align: left;
            justify-content: flex-start;
            color: #475569;
        }
        .comparison-row .check {
            color: #22c55e;
            font-size: 1.1rem;
        }
        .comparison-row .cross {
            color: #cbd5e1;
            font-size: 1.1rem;
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
            padding: 80px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        .stat-item h3 {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .stat-item p {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        /* Action Section */
        .action {
            padding: 100px 0;
            background: #fff;
        }
        .action-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .action-badge {
            display: inline-flex;
            background: rgba(37, 99, 235, 0.1);
            padding: 6px 12px;
            border-radius: 4px;
            color: #2563eb;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .action-left h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
        }
        .action-left h2 span {
            color: #2563eb;
        }
        .action-left p {
            color: #64748b;
            margin-bottom: 24px;
        }
        .action-features {
            list-style: none;
        }
        .action-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            color: #475569;
            font-size: 0.95rem;
        }
        .action-features i {
            color: #22c55e;
        }
        .action-image {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 16px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .action-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Projects Section */
        .projects {
            background: #3b82f6;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .projects::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
        }
        .projects-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .projects-left h2 {
            color: #fff;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .projects-left h2 span {
            color: #fbbf24;
        }
        .projects-subtitle {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            margin-bottom: 32px;
        }
        .projects-features {
            list-style: none;
        }
        .projects-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem;
        }
        .projects-features i {
            color: #fbbf24;
        }
        .projects-image {
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 100px 0;
            text-align: center;
        }
        .cta h2 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta h2 span {
            color: #3b82f6;
        }
        .cta p {
            color: #94a3b8;
            font-size: 1.1rem;
            margin-bottom: 32px;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #2563eb;
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 10px;
            transition: all 0.2s;
        }
        .cta-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }
        
        /* Footer */
        .footer {
            background: #0f172a;
            padding: 60px 0 30px;
            border-top: 1px solid #1e293b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-brand p {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            background: #1e293b;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.2s;
        }
        .footer-social a:hover {
            background: #2563eb;
            color: #fff;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 12px;
        }
        .footer-col a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-bottom p {
            color: #64748b;
            font-size: 0.85rem;
        }
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        .footer-bottom-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .advantage-grid,
            .action-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .platform-cards {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-buttons {
                position: fixed;
                top: 0;
                right: -280px;
                width: 280px;
                height: 100vh;
                background: #1e293b;
                flex-direction: column;
                padding: 80px 24px 24px;
                gap: 8px;
                transition: right 0.3s ease;
                box-shadow: -4px 0 20px rgba(0,0,0,0.3);
                z-index: 1000;
            }
            .nav-buttons.active {
                right: 0;
            }
            .nav-btn {
                width: 100%;
                text-align: center;
                padding: 14px 20px;
                border-radius: 8px;
            }
            .mobile-menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 999;
            }
            .mobile-menu-overlay.active {
                display: block;
            }
            .hero {
                padding: 120px 0 60px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-header h2 {
                font-size: 1.75rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .stat-item h3 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
        .whatsapp-float {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            text-decoration: none;
            box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
            z-index: 1100;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .whatsapp-float:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45);
        }
        @media (max-width: 768px) {
            .whatsapp-float {
                right: 18px;
                bottom: 18px;
                width: 52px;
                height: 52px;
                font-size: 1.55rem;
            }
        }
