        
        /* Hero Visual */
        .hero-visual {
            position: relative;
            z-index: 2;
        }
        
        .visual-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
        }
        
        .ai-interface {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            padding: 25px;
            max-width: 400px;
            width: 100%;
            border: 1px solid #e2e8f0;
        }
        
        .interface-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .header-controls {
            display: flex;
            gap: 8px;
        }
        
        .control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e2e8f0;
        }
        
        .control:nth-child(1) { background: #ef4444; }
        .control:nth-child(2) { background: #f59e0b; }
        .control:nth-child(3) { background: #10b981; }
        
        .interface-header h4 {
            margin: 0;
            color: #1e293b;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .metric-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 12px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
        
        .metric-card:hover {
            transform: translateX(5px);
        }
        
        .metric-icon {
            font-size: 1.5rem;
        }
        
        .metric-info h5 {
            margin: 0 0 5px 0;
            color: #1e293b;
            font-size: 0.95rem;
            font-weight: 600;
        }
        
        .metric-value {
            margin: 0;
            color: #6366f1;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 12px 16px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #475569;
            border: 1px solid #f1f5f9;
        }
        
        .floating-card i {
            color: #6366f1;
        }
        
        .card-1 {
            top: 10%;
            left: -50px;
            animation: float 3s ease-in-out infinite;
        }
        
        .card-2 {
            top: 50%;
            right: -70px;
            animation: float 3s ease-in-out infinite 1s;
        }
        
        .card-3 {
            bottom: 15%;
            left: -40px;
            animation: float 3s ease-in-out infinite 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        /* Value Proposition Section */
        .value-proposition {
            padding: 80px 0;
            background: white;
        }
        
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .value-card {
            background: #f8fafc;
            padding: 35px 25px;
            border-radius: 16px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .value-card.featured {
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            color: white;
            transform: scale(1.05);
        }
        
        .featured-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #f59e0b;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .value-card.featured .value-icon {
            background: rgba(255,255,255,0.2);
        }
        
        .value-card h4 {
            margin-bottom: 15px;
            color: #1e293b;
            font-weight: 600;
        }
        
        .value-card.featured h4 {
            color: white;
        }
        
        .value-card p {
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .value-card.featured p {
            color: rgba(255,255,255,0.9);
        }
        
        .value-metric {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .metric-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #6366f1;
        }
        
        .value-card.featured .metric-number {
            color: white;
        }
        
        .metric-text {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }
        
        .value-card.featured .metric-text {
            color: rgba(255,255,255,0.8);
        }
        
        .trusted-by {
            text-align: center;
            padding: 40px;
            background: #f8fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        
        .trusted-label {
            display: block;
            color: #64748b;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .industry-tags {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .industry-tag {
            background: white;
            color: #475569;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid #e2e8f0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-banner {
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-stats {
                gap: 20px;
                justify-content: center;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .visual-container {
                height: 400px;
            }
            
            .floating-card {
                display: none;
            }
            
            .value-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .value-card.featured {
                transform: none;
            }
            
            .industry-tags {
                gap: 10px;
            }
            
            .trusted-by {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .btn-primary, .btn-secondary {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Case Study Cards */
        .case-study-card {
            background: white !important;
            border-radius: 16px !important;
            padding: 30px !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
            border: 1px solid #e2e8f0 !important;
            height: 100%;
            margin-bottom: 30px !important;
            display: block;
        }

        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
        }

        .case-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f5f9;
        }

        .case-header h4 {
            color: #1e293b;
            font-weight: 700;
            margin: 0;
            font-size: 1.4rem;
        }

        .industry {
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .case-content p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #475569;
        }

        .case-content strong {
            color: #1e293b;
            font-weight: 600;
        }

        .results {
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
        }

        .results h5 {
            color: #1e293b;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .results ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .results ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #475569;
        }

        .results ul li i {
            color: #10b981;
            font-size: 1.1rem;
        }

        /* Process Timeline */
        .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .process-step {
            position: relative;
            padding: 30px 0 30px 80px;
            border-left: 3px solid #e2e8f0;
            margin-bottom: 30px;
        }

        .process-step:last-child {
            border-left: none;
            margin-bottom: 0;
        }

        .step-number {
            position: absolute;
            left: -20px;
            top: 30px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .step-content {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .step-content:hover {
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
            transform: translateX(5px);
        }

        .step-content h4 {
            color: #1e293b;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

        .step-content > p {
            color: #475569;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .step-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .step-details li {
            color: #64748b;
            padding: 8px 0 8px 25px;
            position: relative;
            font-size: 0.95rem;
        }

        .step-details li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #6366f1;
            font-weight: 600;
        }

        /* Consultation Form */
        .consultation-form-wrapper {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .consultation-form h4 {
            color: white;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .consultation-contact-form .form-group {
            margin-bottom: 20px;
        }

        .consultation-contact-form input,
        .consultation-contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.95);
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .consultation-contact-form input:focus,
        .consultation-contact-form textarea:focus {
            border-color: white;
            outline: none;
            background: white;
        }

        .consultation-contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .no-pressure-banner {
            background: rgba(239, 68, 68, 0.2);
            border: 2px solid rgba(239, 68, 68, 0.4);
            padding: 15px 20px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            text-align: center;
            margin-top: 20px;
        }

        .no-pressure-banner i {
            margin-right: 8px;
        }

        /* Responsive for Process Timeline */
        @media (max-width: 768px) {
            .process-step {
                padding-left: 60px;
            }

            .step-number {
                left: -18px;
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .step-content {
                padding: 20px;
            }

            .consultation-form-wrapper {
                padding: 25px;
            }

            .case-study-card {
                padding: 20px;
            }
        }