        /* Modern Typography System */
        :root {
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        
        /* Override base font */
        body {
            font-family: var(--font-primary);
        }
        
        /* Modern Product Showcase */
        .products-modern {
            padding: 8rem 0;
            background: #f8f9fa;
            position: relative;
        }
        
        .products-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
        }
        
        .section-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 5rem;
        }
        
        .section-intro h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.04em;
            line-height: 1;
            color: #0a0a0a;
        }
        
        .highlight-gradient {
            background: linear-gradient(135deg, #0066CC 0%, #00B8D4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        
        .section-intro p {
            font-size: 1.375rem;
            color: #6b7280;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Product Cards with Glass Effect */
        .product-modern {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 40px 5px 40px 5px;
            overflow: hidden;
            margin-bottom: 3rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .product-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(0, 102, 204, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .product-modern:hover::before {
            opacity: 1;
        }
        
        .product-modern:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            border-color: rgba(0, 102, 204, 0.2);
            border-radius: 40px;
        }
        
        .product-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }
        
        .product-content-modern {
            padding: 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
            color: #0066CC;
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            width: fit-content;
            border: 1px solid rgba(0, 102, 204, 0.2);
        }

        .product-modern.archi-assist {
            border-radius: 5px 40px 5px 40px;
        }

        .product-modern.archi-assist:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            border-color: rgba(0, 102, 204, 0.2);
            border-radius: 40px;
        }
        
        .product-modern.archi-assist .product-badge {
            background: linear-gradient(135deg, rgba(0, 184, 212, 0.1), rgba(0, 184, 212, 0.05));
            color: #00B8D4;
            border-color: rgba(0, 184, 212, 0.2);
        }
        
        .product-title {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            color: #0a0a0a;
        }
        
        .product-description {
            font-size: 1.375rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .product-features {
            list-style: none;
            padding: 0;
            margin: 0 0 3rem 0;
        }
        
        .product-features li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
            font-size: 1.125rem;
            color: var(--accent-color);
        } 
        
        .product-features i {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #0066CC, #00B8D4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            flex-shrink: 0;
        }
        
        .product-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            z-index: 10;
        }
        
        .btn-product {
            padding: 0.875rem 1.75rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            text-decoration: none;
        }
        
        .btn-product-primary {
            background: #0066CC;
            color: white;
            border: 1px solid #0066CC;
        }
        
        .btn-product-primary:hover {
            background: #004D99;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
            color: white;
        }
        
        .btn-product-secondary {
            background: white;
            color: #0066CC;
            border: 1px solid #e5e7eb;
        }
        
        .btn-product-secondary:hover {
            background: #f3f4f6;
            border-color: #d1d5db;
            transform: translateY(-2px);
            color: #0066CC;
        }

        .btn-glow {
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-glow-primary {
            background: linear-gradient(135deg, #0066CC, #00B8D4);
            color: white;
            box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
        }
        
        .btn-glow-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 102, 204, 0.5);
        }
        
        .btn-glow-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-glow-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .btn-glow-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .btn-glow-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            color: white;
        }
        
        .product-visual-modern {
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #00B8D4 33%, #0066CC 66%, #7B61FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-visual-modern.archi-assist {
            position: relative;
            background: linear-gradient(135deg, #7B61FF 0%, #0066CC 33%, #00B8D4 66%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            animation: gradientShimmer 1s ease infinite;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #00B8D4 20%, #0066CC 40%, #7B61FF 60%, #00B8D4 80%, #ffffff 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShimmer 8s ease infinite;
        }
        
        .product-video-wrapper {
            position: relative;
            width: 95%;
            max-width: 600px;
        }
        
        .video-frame-modern {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 0.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .video-frame-modern::before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: #f9fafb;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            padding: 0 1rem;
        }
        
        .video-frame-modern::after {
            position: absolute;
            top: 10px;
            left: 1rem;
            font-size: 0.5rem;
            color: #d1d5db;
            letter-spacing: 0.5rem;
        }
        
        .youtube-responsive-container {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }
        
        .youtube-responsive-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius);
        }

        .youtube-video-container {
            position: relative;
        }

        .youtube-video-container:-webkit-full-screen {
            width: 100vw !important;
            height: 100vh !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            z-index: 999999 !important;
        }

        .youtube-video-container:fullscreen {
            width: 100vw !important;
            height: 100vh !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            z-index: 999999 !important;
        }
        
        /* Reverse layout for second product */
        .product-modern.reverse .product-inner {
            grid-template-columns: 1fr 1fr;
            direction: rtl;
        }
        
        .product-modern.reverse .product-content-modern {
            direction: ltr;
        }
        
        .product-modern.reverse .product-visual-modern {
            direction: ltr;
        }
        
        /* Modern How It Works */
        .process-modern {
            padding: 8rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline {
            max-width: 1200px;
            margin: 4rem auto 0;
            position: relative;
        }
        
        .timeline-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .timeline-step {
            text-align: center;
            position: relative;
            padding: 2rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .timeline-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            background: white;
            border-color: rgba(0, 102, 204, 0.2);
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0066CC 0%, #00B8D4 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: white;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .timeline-step:hover .step-number {
            transform: scale(1.1) rotate(5deg);
        }
        
        .step-number::after {
            content: '';
            position: absolute;
            inset: -8px;
            background: linear-gradient(135deg, #0066CC 0%, #00B8D4 100%);
            border-radius: 32px;
            opacity: 0.2;
            z-index: -1;
        }
        
        .step-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            color: #0a0a0a;
        }
        
        .step-desc {
            color: #6b7280;
            line-height: 1.6;
            font-size: 1.0625rem;
        }
        
        /* Timeline connector line */
        .timeline-connector {
            position: absolute;
            top: 80px;
            left: 16.66%;
            right: 16.66%;
            height: 2px;
            background: linear-gradient(90deg, #e5e7eb 0%, #e5e7eb 45%, #0066CC 50%, #00B8D4 55%, #e5e7eb 60%, #e5e7eb 100%);
            background-size: 200% 100%;
            animation: connectorFlow 3s ease-in-out infinite;
            z-index: 0;
        }
        
        @keyframes connectorFlow {
            0% { background-position: 100% 0; }
            100% { background-position: -100% 0; }
        }
        
        /* Modern CTA Section */
        .cta-ultra-modern {
            padding: 8rem 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Animated mesh background */
        .cta-bg-animation {
            position: absolute;
            inset: 0;
            opacity: 0.4;
        }
        
        .cta-gradient {
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            background: radial-gradient(circle at 30% 50%, #0066CC 0%, transparent 40%),
                        radial-gradient(circle at 70% 80%, #00B8D4 0%, transparent 40%),
                        radial-gradient(circle at 50% 20%, #7B61FF 0%, transparent 40%);
            filter: blur(100px);
            animation: floatGradient 20s ease-in-out infinite;
        }
        
        @keyframes floatGradient {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-20px, -20px) scale(1.1); }
            66% { transform: translate(20px, -10px) scale(0.95); }
        }
        
        .cta-content-modern {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content-modern h2 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.04em;
            line-height: 0.95;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #00B8D4 20%, #0066CC 40%, #7B61FF 60%, #00B8D4 80%, #ffffff 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShimmer 8s ease infinite;
        }
        
        @keyframes gradientShimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .cta-content-modern p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.5;
        }
        
        /* Contact Form Modern */
        .contact-form-modern {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 3rem;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group-modern {
            position: relative;
        }
        
        .form-group-modern.full-width {
            grid-column: span 2;
        }
        
        .form-input-modern {
            width: 100%;
            padding: 1.125rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: var(--font-primary);
        }
        
        .form-input-modern:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            border-color: #0066CC;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
        }
        
        .form-input-modern::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-textarea-modern {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-submit-modern {
            width: 100%;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, #0066CC 0%, #004D99 100%);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .form-submit-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
            background: linear-gradient(135deg, #004D99 0%, #003D7A 100%);
        }
        
        /* Dark mode adjustments */
        html.dark-mode-enabled .process-modern {
            background: #1a1a1a;
            color: #f0f0f0;
        }
        
        html.dark-mode-enabled .products-modern {
            background: #121212;
        }
        
        html.dark-mode-enabled .product-modern {
            background: #1e1e1e;
            border-color: #333;
        }
        
        html.dark-mode-enabled .timeline-step {
            background: #1e1e1e;
            border-color: #333;
        }
        
        html.dark-mode-enabled .section-intro h2,
        html.dark-mode-enabled .product-title,
        html.dark-mode-enabled .step-title {
            color: #f0f0f0;
        }
        
        html.dark-mode-enabled .product-description,
        html.dark-mode-enabled .step-desc {
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .product-inner,
            .product-modern.reverse .product-inner {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            
            .product-visual-modern {
                min-height: 400px;
                padding: 3rem;
            }
            
            .timeline-steps {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .timeline-connector {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-group-modern.full-width {
                grid-column: span 1;
            }
            
            .nav-menu.active {
                background-color: white !important;
            }
            
            .nav-menu.active a {
                color: var(--dark-color) !important;
                text-shadow: none !important;
            }
            
            .product-content-modern {
                padding: 3rem;
            }

            /* Make videos larger on mobile */
            .product-video-wrapper {
                width: 100% !important;
                max-width: none !important;
                margin: 0 !important;
            }
            
            .video-frame-modern {
                padding: 0 !important;
                border: none !important;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
            }
            
            /* Hide the browser frame decoration on mobile */
            .video-frame-modern::before,
            .video-frame-modern::after {
                display: none !important;
            }
            
            /* Make the video container full width */
            .youtube-responsive-container {
                border-radius: 8px !important;
                width: 100% !important;
            }
            
            /* Ensure product visual takes full width */
            .product-visual-modern {
                width: 100% !important;
                padding: 0 !important;
            }
            
            /* Stack layout properly on mobile */
            .product-modern .product-inner {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            
            /* Ensure reverse layout also stacks on mobile */
            .product-modern.reverse .product-inner {
                direction: ltr !important;
            }
            
            .video-showcase {
                width: 100% !important;
                max-width: none !important;
            }
            
            .youtube-responsive-container {
                padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
            }
            
            /* Modern product video styles for mobile */
            .product-visual-modern {
                width: 100%;
                padding: 0;
            }
            
            .product-modern .product-video-wrapper {
                width: 100%;
                max-width: none;
            }
        }

        .pricing-info {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: linear-gradient(135deg, rgba(0, 184, 212, 0.1), rgba(0, 184, 212, 0.05));
            border: 1px solid rgba(0, 184, 212, 0.2);
            border-radius: 12px;
            color: #00B8D4;
            font-weight: 600;
            font-size: 0.95rem;
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .pricing-info:hover {
            background: linear-gradient(135deg, rgba(0, 184, 212, 0.15), rgba(0, 184, 212, 0.08));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 184, 212, 0.15);
        }
        
        .pricing-info i {
            font-size: 0.875rem;
        }
        
        /* Dark mode adjustments */
        html.dark-mode-enabled .pricing-info {
            background: linear-gradient(135deg, rgba(0, 184, 212, 0.15), rgba(0, 184, 212, 0.08));
            border-color: rgba(0, 184, 212, 0.3);
            color: #00D4E6;
        }