
        :root {
            --navy: #0F1B5F;
            --charcoal: #1A1F2C;
            --steel: #2D3748;
            --silver: #E2E8F0;
            --gold: #B59B4A;
            --white: #FFFFFF;
            --accent: #2563EB;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; color: var(--charcoal); background-color: var(--white); line-height: 1.6; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.3; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 80px 0; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 16px; }
        .section-title p { font-size: 1.125rem; color: var(--steel); max-width: 600px; margin: 0 auto; }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--navy);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #1a237e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(15, 27, 95, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-secondary:hover {
            background-color: var(--navy);
            color: var(--white);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        
        .btn-outline:hover {
            background-color: var(--navy);
            color: var(--white);
        }

        .btn-lg { padding: 16px 40px; font-size: 1.125rem; }
        
        /* Card Styles */
        .card {
            background: var(--white);
            border: 1px solid var(--silver);
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .card-title {
            font-size: 1.25rem;
            color: var(--charcoal);
            margin: 0;
        }

        .card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        /* Grid Layouts */
        .grid { display: grid; gap: 32px; }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }
        
        /* Dashboard Grid for Feature Cards */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }
        
        /* Stat Cards */
        .stat-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            border: 1px solid var(--silver);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--steel);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Utility Classes */
        .mb-4 { margin-bottom: 2rem; }

        /* Logo Styles */
        .logo-image {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .footer-logo-image {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--white);
            border-bottom: 1px solid var(--silver);
            z-index: 1000;
            padding: 20px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-text h2 {
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--steel);
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: var(--steel);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover { color: var(--navy); }
        .nav-link.active { color: var(--navy); }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--navy);
        }

        .nav-dropdown { position: relative; }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            border: 1px solid var(--silver);
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: var(--steel);
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .dropdown-item:hover {
            background-color: var(--silver);
            color: var(--navy);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--navy);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding-top: 160px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            color: var(--charcoal);
        }
        .hero p {
            font-size: 1.25rem;
            color: var(--steel);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 60px;
        }

        /* Features */
        .features { background-color: var(--white); }
        .feature-card { text-align: center; padding: 40px 32px; }
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(15, 27, 95, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--navy);
            font-size: 2rem;
        }
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--charcoal);
        }
        .feature-card p { color: var(--steel); }

        /* Workflow */
        .workflow { background-color: #f8fafc; }
        .workflow-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .workflow-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--silver);
            z-index: 1;
        }
        .workflow-step {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
        }
        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--navy);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            border: 8px solid #f8fafc;
        }
        .workflow-step h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--charcoal);
        }

        /* Industries */
        .industries { background-color: var(--white); }
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }
        .industry-card {
            background-color: var(--white);
            border: 1px solid var(--silver);
            border-radius: 8px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .industry-card:hover {
            border-color: var(--navy);
            box-shadow: 0 4px 12px rgba(15, 27, 95, 0.1);
        }
        .industry-icon {
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 16px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--navy);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn-light {
            background-color: var(--white);
            color: var(--navy);
        }
        .cta-btn-light:hover { background-color: var(--silver); }

        /* Footer */
        .footer {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 80px 0 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-col-wide { grid-column: span 2; }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .footer-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--white); }
        .footer-contact {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-contact i { color: var(--gold); }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-col-wide { grid-column: span 3; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .mobile-menu-btn { display: block; }
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.5rem; }
            .hero-cta { flex-direction: column; align-items: center; }
            .workflow-steps { flex-direction: column; gap: 40px; }
            .workflow-steps::before { display: none; }
            .dashboard-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .section-padding { padding: 60px 0; }
            .hero { padding-top: 140px; padding-bottom: 60px; }
            .hero h1 { font-size: 2rem; }
            .section-title h2 { font-size: 2rem; }
            .btn { padding: 12px 24px; }
            .card { padding: 24px; }
        }
    