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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.logo img {
    height: 100px; /* or whatever height fits your design */
    /*height: 100%;*/
    width: auto;  /* preserves aspect ratio */
    display: block;
}
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #0066ff;
        }

        .cta-button {
            background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #001133 0%, #003366 25%, #0066ff 100%);
            color: white;
            padding: 160px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
            animation: pulse 6s ease-in-out infinite alternate;
        }

        .floating-documents {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .document {
            position: absolute;
            width: 60px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .document::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            height: 2px;
            background: rgba(0, 212, 255, 0.6);
            border-radius: 1px;
        }

        .document::after {
            content: '';
            position: absolute;
            top: 16px;
            left: 8px;
            right: 16px;
            height: 1px;
            background: rgba(0, 212, 255, 0.4);
            border-radius: 1px;
            box-shadow: 0 4px 0 rgba(0, 212, 255, 0.4),
                        0 8px 0 rgba(0, 212, 255, 0.4),
                        0 12px 0 rgba(0, 212, 255, 0.4);
        }

        .document:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: float-doc-1 12s ease-in-out infinite;
        }

        .document:nth-child(2) {
            top: 60%;
            left: 15%;
            animation: float-doc-2 15s ease-in-out infinite;
            animation-delay: -2s;
        }

        .document:nth-child(3) {
            top: 30%;
            right: 10%;
            animation: float-doc-3 18s ease-in-out infinite;
            animation-delay: -4s;
        }

        .document:nth-child(4) {
            top: 70%;
            right: 20%;
            animation: float-doc-4 14s ease-in-out infinite;
            animation-delay: -6s;
        }

        .document:nth-child(5) {
            top: 15%;
            left: 50%;
            animation: float-doc-5 16s ease-in-out infinite;
            animation-delay: -8s;
        }

        .document:nth-child(6) {
            top: 80%;
            left: 60%;
            animation: float-doc-6 13s ease-in-out infinite;
            animation-delay: -10s;
        }

        @keyframes float-doc-1 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.3; }
            25% { transform: translateY(-15px) rotate(2deg) scale(1.05); opacity: 0.6; }
            50% { transform: translateY(-8px) rotate(-1deg) scale(0.95); opacity: 0.8; }
            75% { transform: translateY(-20px) rotate(3deg) scale(1.1); opacity: 0.4; }
        }

        @keyframes float-doc-2 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.4; }
            30% { transform: translateY(-20px) rotate(-2deg) scale(1.1); opacity: 0.7; }
            60% { transform: translateY(-5px) rotate(1deg) scale(0.9); opacity: 0.9; }
            80% { transform: translateY(-15px) rotate(-3deg) scale(1.05); opacity: 0.5; }
        }

        @keyframes float-doc-3 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.5; }
            20% { transform: translateY(-10px) rotate(1deg) scale(0.95); opacity: 0.8; }
            40% { transform: translateY(-25px) rotate(-2deg) scale(1.15); opacity: 0.3; }
            70% { transform: translateY(-12px) rotate(2deg) scale(1); opacity: 0.6; }
        }

        @keyframes float-doc-4 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.3; }
            35% { transform: translateY(-18px) rotate(3deg) scale(1.08); opacity: 0.7; }
            65% { transform: translateY(-7px) rotate(-1deg) scale(0.92); opacity: 0.9; }
            85% { transform: translateY(-22px) rotate(-2deg) scale(1.12); opacity: 0.4; }
        }

        @keyframes float-doc-5 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.4; }
            15% { transform: translateY(-12px) rotate(-3deg) scale(1.02); opacity: 0.6; }
            45% { transform: translateY(-28px) rotate(1deg) scale(1.18); opacity: 0.8; }
            75% { transform: translateY(-16px) rotate(2deg) scale(0.88); opacity: 0.5; }
        }

        @keyframes float-doc-6 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.5; }
            25% { transform: translateY(-14px) rotate(2deg) scale(1.06); opacity: 0.8; }
            55% { transform: translateY(-9px) rotate(-2deg) scale(0.94); opacity: 0.3; }
            80% { transform: translateY(-21px) rotate(1deg) scale(1.1); opacity: 0.7; }
        }

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

        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .primary-button {
            background: white;
            color: #0066ff;
        }

        .secondary-button {
            background: transparent;
            color: white;
            border: 2px solid #00d4ff;
        }

        .hero-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2d3748;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.125rem;
            color: #718096;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.4);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2d3748;
        }

        .feature-card p {
            color: #718096;
            line-height: 1.7;
        }

        /* Demo Section */
        .demo {
            padding: 80px 0;
            background: white;
        }

        .demo-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .demo-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2d3748;
        }

        .demo-text p {
            font-size: 1.125rem;
            color: #718096;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .demo-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .demo-features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #4a5568;
        }

        .demo-features li::before {
            content: '✓';
            color: #00d4ff;
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .demo-visual {
            background: linear-gradient(135deg, #001133 0%, #003366 100%);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #0066ff;
            overflow: hidden;
        }

        .demo-visual::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="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,212,255,0.3)" stroke-width="0.5"/><circle cx="10" cy="10" r="1" fill="rgba(0,212,255,0.5)"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
            animation: tech-float 15s linear infinite;
        }

        @keyframes tech-float {
            0% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            50% { transform: translateX(0) translateY(-10px); }
            75% { transform: translateX(10px) translateY(-5px); }
            100% { transform: translateX(0) translateY(0); }
        }

        .demo-placeholder {
            text-align: center;
            color: #00d4ff;
            font-size: 1.125rem;
            position: relative;
            z-index: 2;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
        }

        .pricing-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 102, 255, 0.2);
        }

        .pricing-card.featured:hover {
            transform: translateY(-5px) scale(1.07);
            box-shadow: 0 30px 60px rgba(0, 102, 255, 0.4);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .price-period {
            font-size: 1rem;
            opacity: 0.7;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-features li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
        }

        .pricing-features li::before {
            content: '✓';
            color: #00d4ff;
            font-weight: bold;
            margin-right: 0.75rem;
        }

        .pricing-card.featured .pricing-features li::before {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #001133 0%, #002244 100%);
            color: white;
            padding: 60px 0 30px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #0066ff 50%, transparent 100%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00d4ff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 102, 255, 0.3);
            padding-top: 2rem;
            text-align: center;
            color: #a0aec0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .demo-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Base Navigation Styles */
nav.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: relative;
}

.logo {
    z-index: 1001;
}
/*
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
*/
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #DC2626 0%, #3B82F6 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav.container {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
    }

    .cta-button {
        display: none; /* Hide top CTA button on mobile */
    }

    /* Add CTA to mobile menu */
    .nav-links::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #e5e7eb;
        margin: 20px 0;
    }

    .nav-links li:last-child::after {
        content: 'Download Now';
        display: block;
        margin-top: 30px;
        background: linear-gradient(135deg, #DC2626 0%, #3B82F6 100%);
        color: white;
        padding: 14px 28px;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
        text-decoration: none;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

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

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }
}
