:root {
            /* Primary brand colors */
            --primary: #4A7BF7;
            --primary-dark: #3A62C4;
            --primary-light: #6B93F9;

            /* Platform colors - kept as-is */
            --fabric-purple: #742774;
            --databricks-orange: #FF3621;
            --snowflake-blue: #29B5E8;
            --gcp-blue: #4285F4;
            --reltio-teal: #00A4BD;
            --informatica-orange: #FF4D00;

            /* Neutral colors - updated for cleaner look */
            --gray-50: #f8f9fb;
            --gray-100: #f1f3f5;
            --gray-200: #e8eaed;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1a1a2e;
            --gray-900: #111827;

            /* Background colors */
            --bg-main: #f5f6f8;
            --bg-card: #ffffff;
            --white: #ffffff;

            /* Border colors */
            --border-light: #e8eaed;
            --border-medium: #d1d5db;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-main);
            color: var(--gray-800);
            line-height: 1.6;
            zoom: 0.9;
        }

        /* Header */
        .header {
            background: #153D64;
            color: var(--white);
            padding: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 45px;
            filter: brightness(0) invert(1);
        }

        .header-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header-center h1 {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--white);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.15);
            border: none;
            border-radius: 8px;
            padding: 10px 16px;
            width: 280px;
            transition: all 0.2s ease;
        }

        .search-box:focus-within {
            background: rgba(255,255,255,0.25);
            width: 320px;
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 14px;
            width: 100%;
            outline: none;
        }

        .search-box input::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .search-icon {
            margin-right: 10px;
            color: rgba(255,255,255,0.7);
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        /* Hero Section */
        .hero {
            background: var(--white);
            color: var(--gray-800);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-light);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(74, 123, 247, 0.03) 0%, transparent 70%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--gray-800);
        }

        .hero p {
            font-size: 1rem;
            color: var(--gray-500);
            max-width: 700px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 16px 28px;
            border-radius: 12px;
            transition: all 0.2s ease;
            cursor: default;
            background: var(--bg-main);
            border: 1px solid var(--border-light);
        }

        .stat-item:hover {
            background: var(--white);
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transform: translateY(-2px);
            border-color: var(--border-medium);
        }

        .stat-number {
            font-size: 2.25rem;
            font-weight: 600;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray-500);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Platform Cards Section */
        .platforms-section {
            padding: 48px 40px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h3 {
            font-size: 1.5rem;
            color: var(--gray-800);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .section-title p {
            color: var(--gray-500);
            font-size: 0.95rem;
        }

        .platform-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .platform-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }

        .platform-card:hover {
            border-color: var(--border-medium);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }

        .platform-card.disabled {
            opacity: 0.55;
            cursor: not-allowed;
        }

        .platform-card.disabled:hover {
            transform: none;
            box-shadow: none;
            border-color: var(--border-light);
        }

        .platform-header {
            padding: 20px;
            color: white;
            position: relative;
            min-height: 140px;
        }

        .platform-header.fabric {
            background: #742774;
        }

        .platform-header.databricks {
            background: #FF3621;
        }

        .platform-header.snowflake {
            background: #29B5E8;
        }

        .platform-header.gcp {
            background: #4285F4;
        }

        .platform-header.reltio {
            background: #00A4BD;
        }

        .platform-header.informatica {
            background: #FF4D00;
        }

        .coming-soon-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255,255,255,0.9);
            color: var(--gray-700);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .platform-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            height: 36px;
        }

        .platform-icon svg {
            width: 36px;
            height: 36px;
        }

        .platform-icon.databricks svg {
            fill: white;
        }

        .platform-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .platform-header p {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .platform-body {
            padding: 16px 20px;
        }

        .platform-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-light);
        }

        .platform-stat {
            text-align: center;
        }

        .platform-stat .num {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--gray-800);
        }

        .platform-stat .label {
            font-size: 0.65rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .platform-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
            min-height: 52px;
        }

        .category-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--gray-100);
            color: var(--gray-700);
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            white-space: nowrap;
            border: 1px solid var(--border-light);
        }

        .platform-action {
            display: block;
            width: 100%;
            padding: 10px 16px;
            border: none;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s ease;
            text-decoration: none;
            text-align: center;
        }

        .platform-action.fabric {
            background: #742774;
            color: white;
        }

        .platform-action.fabric:hover {
            background: #5c1f5c;
        }

        .platform-action.databricks {
            background: #FF3621;
            color: white;
        }

        .platform-action.databricks:hover {
            background: #e62e1a;
        }

        .platform-action.snowflake {
            background: #29B5E8;
            color: white;
        }

        .platform-action.snowflake:hover {
            background: #1f9ac7;
        }

        .platform-action.gcp {
            background: #4285F4;
            color: white;
        }

        .platform-action.gcp:hover {
            background: #3367d6;
        }

        .platform-action.reltio {
            background: #00A4BD;
            color: white;
        }

        .platform-action.reltio:hover {
            background: #008a9e;
        }

        .platform-action.informatica {
            background: #FF4D00;
            color: white;
        }

        .platform-action.informatica:hover {
            background: #e64500;
        }

        /* Features Section */
        .features-section {
            background: var(--white);
            padding: 48px 40px;
            border-top: 1px solid var(--border-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 20px 16px;
            background: var(--bg-main);
            border-radius: 12px;
            border: 1px solid var(--border-light);
            transition: all 0.2s ease;
        }

        .feature-card:hover {
            border-color: var(--border-medium);
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }

        .feature-icon {
            font-size: 1.75rem;
            margin-bottom: 10px;
        }

        .feature-card h5 {
            font-size: 0.9rem;
            color: var(--gray-800);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--gray-500);
            font-size: 0.8rem;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: var(--white);
            color: var(--gray-500);
            padding: 20px 40px;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .footer p {
            font-size: 0.8rem;
        }

        /* Search Results Overlay */
        .search-overlay {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 999;
        }

        .search-overlay.active {
            display: block;
        }

        .search-results {
            position: fixed;
            top: 92px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 720px;
            max-height: 70vh;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border-light);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            overflow: hidden;
            z-index: 1000;
            display: none;
        }

        .search-results.active {
            display: block;
        }

        .search-results-header {
            padding: 12px 16px;
            background: var(--bg-main);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .search-results-header h4 {
            color: var(--gray-800);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .close-search {
            background: none;
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
            color: var(--gray-400);
            transition: color 0.15s;
        }

        .close-search:hover {
            color: var(--gray-600);
        }

        .search-results-body {
            max-height: calc(70vh - 50px);
            overflow-y: auto;
            padding: 8px;
        }

        .search-result-item {
            display: flex;
            align-items: center;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.15s;
        }

        .search-result-item:hover {
            background: var(--bg-main);
        }

        .result-platform {
            width: 4px;
            height: 36px;
            border-radius: 2px;
            margin-right: 12px;
        }

        .result-platform.fabric {
            background: var(--fabric-purple);
        }

        .result-platform.databricks {
            background: var(--databricks-orange);
        }

        .result-platform.snowflake {
            background: var(--snowflake-blue);
        }

        .result-info h5 {
            color: var(--gray-800);
            font-size: 0.85rem;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .result-info p {
            color: var(--gray-500);
            font-size: 0.75rem;
        }

        .no-results {
            text-align: center;
            padding: 32px;
            color: var(--gray-500);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .platform-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
            }
            .platform-grid {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 48px 20px;
            }
            .hero h2 {
                font-size: 1.75rem;
            }
            .hero-stats {
                flex-direction: column;
                gap: 16px;
            }
            .header-center h1 {
                font-size: 1.5rem;
            }
            .platforms-section,
            .features-section {
                padding: 48px 20px;
            }
        }
