
        :root {
            --hhx9et-primary: #1880C4;
            --hhx9et-secondary: #0e5a8a;
            --hhx9et-accent: #00d4ff;
            --hhx9et-bg: #f8fafc;
            --hhx9et-text: #1e293b;
            --hhx9et-text-light: #64748b;
            --hhx9et-white: #ffffff;
            --hhx9et-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
            --hhx9et-radius: 16px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--hhx9et-bg);
            color: var(--hhx9et-text);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* Navigation */
        .hhx9et-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
        }

        .hhx9et-nav-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .hhx9et-logo {
            min-width: 0;
            flex-shrink: 0;
        }

        .hhx9et-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .hhx9et-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
            margin-left: auto;
        }

        .hhx9et-menu-item a {
            text-decoration: none;
            color: var(--hhx9et-text);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hhx9et-menu-item a:hover {
            background: rgba(24, 128, 196, 0.1);
            color: var(--hhx9et-primary);
        }

        .hhx9et-menu-item a.hhx9et-active {
            background: var(--hhx9et-primary);
            color: var(--hhx9et-white);
        }

        /* Hero Section - Unique Diagonal Split */
        .hhx9et-hero {
            padding-top: 140px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: var(--hhx9et-white);
            position: relative;
            overflow: hidden;
        }

        .hhx9et-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0l100 100M100 0L0 100" stroke="white" stroke-opacity="0.05" stroke-width="1"/></svg>');
            mask-image: linear-gradient(to left, rgba(0,0,0,1), transparent);
        }

        .hhx9et-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hhx9et-hero-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .hhx9et-hero-content {
            flex: 1;
            min-width: 320px;
        }

        .hhx9et-hero-title {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hhx9et-hero-subtitle {
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
            color: #94a3b8;
            margin-bottom: 32px;
            max-width: 600px;
        }

        /* Content Sections */
        .hhx9et-section {
            padding: 80px 0;
        }

        .hhx9et-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .hhx9et-card {
            background: var(--hhx9et-white);
            padding: 40px;
            border-radius: var(--hhx9et-radius);
            box-shadow: var(--hhx9et-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
            min-width: 0;
        }

        .hhx9et-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
        }

        .hhx9et-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(24, 128, 196, 0.1);
            color: var(--hhx9et-primary);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .hhx9et-card-title {
            font-size: 1.5rem;
            margin-bottom: 16px;
            font-weight: 700;
        }

        /* Step-by-Step Layout */
        .hhx9et-steps {
            background: var(--hhx9et-white);
            border-radius: 24px;
            padding: 48px;
            margin-top: 64px;
        }

        .hhx9et-step-item {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            padding: 32px 0;
            border-bottom: 1px dashed #e2e8f0;
        }

        .hhx9et-step-item:last-child {
            border-bottom: none;
        }

        .hhx9et-step-num {
            width: 48px;
            height: 48px;
            background: var(--hhx9et-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
        }

        .hhx9et-step-content {
            flex: 1;
            min-width: 280px;
        }

        .hhx9et-step-content h3 {
            margin-bottom: 12px;
            color: var(--hhx9et-primary);
        }

        /* Industry Specific Section */
        .hhx9et-industry-section {
            background-color: #f1f5f9;
            border-radius: 32px;
            padding: 64px 32px;
            margin: 64px 0;
        }

        .hhx9et-badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }

        .hhx9et-badge {
            background: #fff;
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 14px;
            border: 1px solid #e2e8f0;
        }

        /* Footer */
        .hhx9et-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 64px 0 32px;
        }

        .hhx9et-footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 48px;
            margin-bottom: 32px;
        }

        .hhx9et-footer-brand {
            flex: 1;
            min-width: 240px;
        }

        .hhx9et-brand-name {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }

        .hhx9et-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .hhx9et-link-group h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .hhx9et-link-group ul {
            list-style: none;
        }

        .hhx9et-link-group ul li {
            margin-bottom: 10px;
        }

        .hhx9et-link-group ul li a {
            color: inherit;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .hhx9et-link-group ul li a:hover {
            color: var(--hhx9et-accent);
        }

        .hhx9et-copyright {
            text-align: center;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hhx9et-menu {
                display: none; /* In a real site, implement a hamburger menu */
            }
            .hhx9et-hero {
                text-align: center;
            }
            .hhx9et-hero-flex {
                justify-content: center;
            }
            .hhx9et-section {
                padding: 48px 0;
            }
        }
    