.hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
        }

        .imagivite-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 100px 100px;
            z-index: 1;
        }

        .imagivite-hero-wrapper {
            margin-top: 150px;
            position: relative;
            width: 100%;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
            padding: 20px;
        }

        .imagivite-nav-cta {
            position: fixed;
            top: 32px;
            right: 48px;
            background: white;
            color: #0a0a0f;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            opacity: 0;
            transform: translateY(-10px);
            animation: imagiviteNavFadeIn 0.8s ease forwards 0.8s;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .imagivite-nav-cta:hover {
            transform: translateY(0) scale(1.05);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
        }

        .imagivite-nav-cta::after {
            content: '→';
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .imagivite-nav-cta:hover::after {
            transform: translateX(4px);
        }

        .imagivite-arc-wrapper {
            position: absolute;
            width: 2800px;
            height: 100%;
            top: 0px;
            left: calc(50% - 1400px);
            display: flex;
            justify-content: center;
            z-index: 1;
            overflow: visible;
        }

        /*.imagivite-arc-visual {*/
        /*    min-width: 100%;*/
        /*    max-width: 3600px;*/
        /*    height: auto;*/
        /*    opacity: 0;*/
        /*    filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 100px rgba(168, 85, 247, 0.4));*/
        /*    animation: imagiviteArcAppear 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s, imagiviteArcPulse 4s ease-in-out infinite 2s;*/
        /*}*/

        .imagivite-content-block {
            position: relative;
            text-align: center;
            z-index: 10;
            margin-top: 0;
        }

        .imagivite-brand-title {
            font-size: 150px;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            color: #ffffff;
            opacity: 0;
            transform: translateY(40px) scale(0.9);
            animation: imagiviteTitleAppear 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
            text-shadow: 0 4px 40px rgba(255, 255, 255, 0.2);
            line-height: 0.9;
        }

        .imagivite-company-tagline {
            font-size: 24px;
            color: #a0a0a8;
            font-weight: 400;
            letter-spacing: 0.08em;
            opacity: 0;
            transform: translateY(20px);
            animation: imagiviteSubtitleAppear 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 1s;
            margin-bottom: 10px;
        }

        .product-showcase {
            opacity: 0;
            transform: translateY(30px);
            animation: productShowcaseAppear 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.4s;
        }

        .product-label {
            font-size: 14px;
            color: #a855f7;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .product-name {
            font-size: 72px;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #a855f7 0%, #e879f9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
        }

        .product-name::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #a855f7, transparent);
            border-radius: 2px;
        }

        .product-description {
            font-size: 20px;
            color: #c0c0c8;
            font-weight: 400;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 20px;
        }

        .product-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .product-cta {
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .product-cta-primary {
            background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
            color: white;
            box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
        }

        .product-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
        }

        .product-cta-secondary {
            background: rgba(168, 85, 247, 0.1);
            color: #a855f7;
            border: 2px solid rgba(168, 85, 247, 0.3);
        }

        .product-cta-secondary:hover {
            background: rgba(168, 85, 247, 0.2);
            border-color: rgba(168, 85, 247, 0.5);
            transform: translateY(-2px);
        }

        @keyframes imagiviteNavFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes imagiviteArcAppear {
            0% {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes imagiviteArcPulse {
            0%, 100% {
                filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 100px rgba(168, 85, 247, 0.4));
            }
            50% {
                filter: drop-shadow(0 0 80px rgba(168, 85, 247, 1)) drop-shadow(0 0 120px rgba(168, 85, 247, 0.6));
            }
        }

        @keyframes imagiviteTitleAppear {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes imagiviteSubtitleAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes productShowcaseAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .imagivite-brand-title {
                font-size: clamp(90px, 10vw, 120px);
            }
            
            .product-name {
                font-size: clamp(48px, 8vw, 60px);
            }
            
            .product-description {
                font-size: 18px;
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .imagivite-arc-wrapper {
                display: none;
            }
            
            .hero-section::before {
                content: '';
                position: absolute;
                top: 20%;
                left: 50%;
                transform: translateX(-50%);
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0.1) 40%, transparent 70%);
                border-radius: 50%;
                z-index: 1;
                animation: mobileGlowPulse 4s ease-in-out infinite;
            }
            
            .hero-section::after {
                content: '';
                position: absolute;
                bottom: 10%;
                left: 20%;
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(139, 51, 234, 0.2) 0%, rgba(139, 51, 234, 0.05) 50%, transparent 70%);
                border-radius: 50%;
                z-index: 1;
                animation: mobileGlowPulse 5s ease-in-out infinite 1s;
            }
            
            .imagivite-brand-title {
                font-size: clamp(60px, 12vw, 85px);
                margin-bottom: 16px;
            }
            
            .imagivite-company-tagline {
                font-size: 18px;
                margin-bottom: 40px;
            }
            
            .product-name {
                font-size: clamp(40px, 10vw, 52px);
            }
            
            .product-description {
                font-size: 16px;
            }
            
            .product-cta {
                padding: 14px 32px;
                font-size: 15px;
            }
        }
        
        @keyframes mobileGlowPulse {
            0%, 100% {
                opacity: 1;
                transform: translateX(-50%) scale(1);
            }
            50% {
                opacity: 0.7;
                transform: translateX(-50%) scale(1.1);
            }
        }

        @media (max-width: 480px) {
            .imagivite-hero-wrapper {
            margin-top: 100px;
            }
            .imagivite-brand-title {
                font-size: clamp(45px, 13vw, 60px);
            }
            
            .imagivite-company-tagline {
                font-size: 14px;
                margin-bottom: 30px;
            }
            
            .product-label {
                font-size: 12px;
            }
            
            .product-name {
                font-size: clamp(32px, 11vw, 44px);
                margin-bottom: 16px;
            }
            
            .product-description {
                font-size: 14px;
                margin-bottom: 30px;
            }
            
            .product-cta-group {
                flex-direction: column;
                width: 100%;
                padding: 0 20px;
            }
            
            .product-cta {
                width: 100%;
                justify-content: center;
                padding: 12px 28px;
            }
            
            .imagivite-arc-wrapper {
                width: 900px;
                left: calc(50% - 450px);
            }
            
            .imagivite-arc-visual {
                width: 120%;
            }
        }
        

