
        :root {
            --rfq3-primary: #e65100;
            --rfq3-primary-light: #ffb74d;
            --rfq3-secondary: #2c3e50;
            --rfq3-accent: #0078d4;
            --rfq3-bg-light: #f8f9fa;
            --rfq3-bg-dark: #121212;
            --rfq3-text-main: #333;
            --rfq3-text-muted: #666;
            --rfq3-white: #ffffff;
            --rfq3-border: #e0e0e0;
            --rfq3-shadow: 0 10px 30px rgba(0,0,0,0.08);
            --rfq3-radius: 12px;
        }

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

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

        /* Navigation */
        .rfq3-navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--rfq3-border);
            padding: 0 24px;
        }

        .rfq3-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            flex-wrap: wrap;
        }

        .rfq3-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .rfq3-logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .rfq3-nav-menu {
            display: flex;
            list-style: none;
            gap: 16px;
            flex-wrap: wrap;
            min-width: 0;
        }

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

        .rfq3-nav-menu a:hover {
            color: var(--rfq3-primary);
            background: rgba(230, 81, 0, 0.05);
        }

        .rfq3-nav-menu a.rfq3-active {
            color: var(--rfq3-primary);
            font-weight: 700;
            border-bottom: 2px solid var(--rfq3-primary);
            border-radius: 0;
        }

        /* Hero Section */
        .rfq3-hero {
            padding: 160px 24px 96px;
            background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
            text-align: center;
            position: relative;
        }

        .rfq3-hero-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .rfq3-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            color: var(--rfq3-secondary);
            margin-bottom: 24px;
            word-break: break-word;
        }

        .rfq3-hero p {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
            color: var(--rfq3-text-muted);
            max-width: 800px;
            margin: 0 auto 48px;
            word-break: break-word;
        }

        .rfq3-vs-badge {
            display: inline-block;
            background: var(--rfq3-primary);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
        }

        /* Comparison Grid */
        .rfq3-section {
            padding: 96px 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .rfq3-card {
            background: var(--rfq3-white);
            border: 1px solid var(--rfq3-border);
            border-radius: var(--rfq3-radius);
            padding: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .rfq3-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--rfq3-shadow);
        }

        .rfq3-card-icon {
            width: 64px;
            height: 64px;
            background: rgba(230, 81, 0, 0.1);
            border-radius: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--rfq3-primary);
        }

        .rfq3-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--rfq3-secondary);
        }

        .rfq3-card p {
            color: var(--rfq3-text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }

        /* Specs Section */
        .rfq3-specs-wrap {
            background: var(--rfq3-secondary);
            color: var(--rfq3-white);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .rfq3-specs-content {
            flex: 1;
            padding: 64px;
            min-width: 320px;
        }

        .rfq3-specs-image {
            flex: 1;
            min-width: 320px;
            background: linear-gradient(45deg, #1e2b37, #2c3e50);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 400px;
        }

        .rfq3-data-viz {
            width: 80%;
            height: 60%;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 24px;
            background: rgba(0,0,0,0.2);
            font-family: monospace;
            font-size: 12px;
            color: var(--rfq3-primary-light);
            overflow: hidden;
        }

        .rfq3-spec-item {
            margin-bottom: 32px;
            border-left: 4px solid var(--rfq3-primary);
            padding-left: 24px;
        }

        .rfq3-spec-item h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--rfq3-primary-light);
        }

        /* Comparison Table Section */
        .rfq3-table-container {
            overflow-x: auto;
            margin-top: 48px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--rfq3-shadow);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        th, td {
            padding: 24px;
            text-align: left;
            border-bottom: 1px solid var(--rfq3-border);
        }

        th {
            background: #fafafa;
            font-weight: 700;
            color: var(--rfq3-secondary);
        }

        .rfq3-check { color: #27ae60; font-weight: bold; }
        .rfq3-cross { color: #e74c3c; font-weight: bold; }

        /* Dynamic Content Section */
        .rfq3-news-section {
            background: #fff;
        }

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

        .rfq3-section-title h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--rfq3-secondary);
            margin-bottom: 16px;
        }

        /* Footer */
        .rfq3-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 80px 24px 40px;
        }

        .rfq3-footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .rfq3-footer-brand h2 {
            color: var(--rfq3-white);
            margin-bottom: 20px;
            font-size: 24px;
        }

        .rfq3-footer-links h4 {
            color: var(--rfq3-white);
            margin-bottom: 24px;
        }

        .rfq3-footer-links ul {
            list-style: none;
        }

        .rfq3-footer-links li {
            margin-bottom: 12px;
        }

        .rfq3-footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .rfq3-footer-links a:hover {
            color: var(--rfq3-primary);
        }

        .rfq3-footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 14px;
        }

        /* Buttons */
        .rfq3-btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .rfq3-btn-primary {
            background: var(--rfq3-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
        }

        .rfq3-btn-primary:hover {
            background: #bf4300;
            transform: translateY(-2px);
        }

        .rfq3-btn-outline {
            border: 2px solid var(--rfq3-primary);
            color: var(--rfq3-primary);
            margin-left: 16px;
        }

        .rfq3-btn-outline:hover {
            background: var(--rfq3-primary);
            color: white;
        }

        @media (max-width: 768px) {
            .rfq3-nav-menu {
                display: none; /* Mobile menu logic would go here */
            }
            .rfq3-hero {
                padding: 120px 24px 64px;
            }
            .rfq3-btn-outline {
                margin-left: 0;
                margin-top: 16px;
                width: 100%;
            }
            .rfq3-btn-primary {
                width: 100%;
            }
        }
    