 
        @import url('https://fonts.googleapis.com/css2?family=Times+New+Roman:ital,wght@0,400;0,700;1,400;1,700&display=swap');
        
        body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Site-wide content wrapper for consistent horizontal alignment */
        .site-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 0; /* Vertical padding only, let wrapper handle horizontal */
            overflow: hidden;
            color: #ffffff;
            text-align: center;
        }

        .gradient-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .gradient-layer-1 {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
            opacity: 0.9;
        }

        .gradient-layer-2 {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, #ff7e5f 0%, transparent 50%);
            animation: gradient-move 15s infinite alternate;
        }

        /* Content Container */
        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4rem;
        }

        .hero-content {
            max-width: 700px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Typography */
        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        p {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            line-height: 1.7;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            max-width: 90%;
        }

        /* Tech Elements */
        .tech-elements {
            position: relative;
            width: 100%;
            height: 200px;
        }

        .tech-orb {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            filter: blur(1px);
            animation: orb-float 8s ease-in-out infinite;
        }

        .ai-orb {
            background: rgba(255,255,255,0.15);
            top: 20%;
            left: 10%;
            box-shadow: 0 0 30px rgba(110, 69, 226, 0.6);
            animation-delay: 0s;
        }

        .ar-orb {
            background: rgba(255,255,255,0.1);
            top: 60%;
            left: 80%;
            box-shadow: 0 0 30px rgba(136, 211, 206, 0.6);
            animation-delay: 0.5s;
        }

        .blockchain-orb {
            background: rgba(255,255,255,0.2);
            top: 40%;
            left: 70%;
            box-shadow: 0 0 30px rgba(255, 126, 95, 0.6);
            animation-delay: 1s;
        }

        .tech-line {
            position: absolute;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            top: 50%;
            transform: translateY(-50%);
        }

        /* Features Section */
        .features-section {
            padding: 8rem 0;
            background: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1e3c72;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: #ff6b6b;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: block;
            object-fit: contain;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1e3c72;
            text-align: center;
        }

        /* Solutions Section */
        .solutions-section {
            padding: 8rem 0;
            background: #ff6b6b;
        }

        .solutions-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
        }

        .solution-card {
            flex: 1 1 300px;
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .solution-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .solution-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        /* CSS moved from inline style */
        .solution-img-1 {
            background-image: url('https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
        }

        .solution-img-2 {
            background-image: url('https://images.unsplash.com/photo-1486401899868-0e435ed85128?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
        }

        .solution-img-3 {
            background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
        }

        .solution-content {
            padding: 2rem;
        }

        .solution-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1e3c72;
            text-align: center;
        }

        .solution-content ul {
            padding-left: 20px;
        }

        .solution-content li {
            margin-bottom: 8px;
        }

        /* ShopTech Nexus Section Styles */
        .shoptech-section {
            background-color: #ffffff;
            padding: 6rem 0;
            position: relative;
            border-top: 1px solid #f0f2f5;
            border-bottom: 1px solid #f0f2f5;
        }

        .shoptech-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .shoptech-badge {
            display: inline-block;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
        }

        .shoptech-title {
            font-size: 2.8rem;
            color: #2b2d42;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .shoptech-subtitle {
            color: #6c757d;
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .shoptech-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .shoptech-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .shoptech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: #dee2e6;
        }

        .shoptech-img-container {
            height: 200px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            border-bottom: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }

        .shoptech-img-container::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 50px;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
            transform: rotate(-5deg);
            top: 0;
            left: -25%;
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(-5deg); }
            100% { transform: translateX(100%) rotate(-5deg); }
        }

        .shoptech-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-width: 120px;
            transition: transform 0.3s ease;
            z-index: 2;
        }

        .shoptech-card:hover .shoptech-img {
            transform: scale(1.1);
        }

        .shoptech-content {
            padding: 1.8rem;
        }

        .shoptech-tech-tag {
            display: inline-block;
            background-color: #f8f9fa;
            color: #495057;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .shoptech-card h3 {
            color: #212529;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .shoptech-card p {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .shoptech-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .shoptech-tech-stack li {
            background-color: #f1f3f5;
            color: #495057;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            list-style: none;
        }

        /* E-commerce Topics Section */
        .topics-section {
            padding: 8rem 0;
            background: #4f46e559;
        }

        .topics-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .topic-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .topic-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .topic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .topic-header {
            background: #1e3c72;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .topic-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }

        .topic-content {
            padding: 2rem;
        }

        .topic-content ul {
            padding-left: 20px;
        }

        .topic-content li {
            margin-bottom: 10px;
            position: relative;
        }

        .topic-content li:before {
            content: "→";
            color: #ff6b6b;
            position: absolute;
            left: -20px;
        }

        /* Modern Subscription Section Styles */
        .subscription-section {
            padding: 6rem 0;
            background: #2125291a;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .section-tag {
            display: inline-block;
            background: #e0e7ff;
            color: #4f46e5;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.375rem 0.75rem;
            border-radius: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #111827;
            margin: 0 0 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            margin: 0;
            line-height: 1.6;
        }

        /* Model Cards Grid */
        .subscription-models-container {
            padding-bottom: 3rem;
        }

        .model-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .model-card {
            perspective: 1000px;
        }

        .model-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .model-card:hover .model-card-inner {
            transform: translateY(-0.5rem);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .model-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: #e0e7ff;
            color: #4f46e5;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .model-icon svg {
            width: 1.75rem;
            height: 1.75rem;
        }

        .model-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
        }

        .model-card p {
            color: #6b7280;
            font-size: 0.9375rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .model-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .model-features li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            color: #4b5563;
        }

        .model-features li:before {
            content: "•";
            color: #4f46e5;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Subscription Management Features */
        .subscription-management {
            background: white;
            border-radius: 1rem;
            padding: 3.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .management-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .management-header h3 {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .management-header p {
            color: #6b7280;
            margin: 0;
        }

        .management-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 1.75rem;
            height: 1.75rem;
            background: #e0e7ff;
            color: #4f46e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .feature-text h4 {
            font-size: 1rem;
            color: #111827;
            margin: 0 0 0.25rem;
        }

        .feature-text p {
            color: #6b7280;
            font-size: 0.875rem;
            margin: 0;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes gradient-move {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.2); opacity: 0.8; }
        }
        
        @keyframes orb-float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .shoptech-container {
                gap: 1.5rem;
            }
            
            .shoptech-img-container {
                height: 180px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
                padding: 3rem 0;
                text-align: center;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 2rem;
                padding-bottom: 3rem;
                padding-top: 3rem;
                box-sizing: border-box;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                margin: 0 auto;
                padding: 0 1rem;
            }
            
            .tech-orb {
                width: 60px;
                height: 60px;
            }
            
            .ai-orb { left: 5%; }
            .ar-orb { left: 75%; }
            .blockchain-orb { left: 65%; }

            .features-section, .solutions-section, .topics-section, .subscription-section, .shoptech-section {
                padding: 5rem 0;
            }

            .site-container {
                padding: 0 1rem;
            }

            .features-grid, .solutions-container, .topics-container {
                gap: 1.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .shoptech-title {
                font-size: 2.2rem;
            }

            .shoptech-subtitle {
                font-size: 1.1rem;
            }

            .shoptech-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .model-cards {
                grid-template-columns: 1fr;
            }
            
            .management-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2.2rem;
            }
            
            p {
                font-size: 1rem;
            }
            
            .tech-elements {
                height: 150px;
            }
            
            .tech-orb {
                width: 50px;
                height: 50px;
            }
            
            .shoptech-container {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .shoptech-title {
                font-size: 2rem;
            }
            
            .shoptech-img-container {
                height: 160px;
            }

            .section-header {
                margin-bottom: 2rem;
            }
            
            .subscription-management {
                padding: 2.5rem 2rem;
            }
            
            .feature-item {
                flex-direction: column;
            }
        }
    