
        :root {
            --primary: #0A0E27;
            --accent: #00F5A0;
            --accent-secondary: #00D9F5;
            --text: #E8E8E8;
            --text-muted: #9CA3AF;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.08);
        }

        h1, h2, h3, h4, h5, h6 { color: #fff; }

        .migration_pages {
            font-family: 'DM Sans', sans-serif;
            background: var(--primary);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated gradient background */
        .migration_pages::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 245, 160, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(0, 217, 245, 0.05) 0%, transparent 50%);
            animation: gradientMove 20s ease infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gradientMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(5%, 5%) rotate(120deg); }
            66% { transform: translate(-5%, 5%) rotate(240deg); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            padding: 120px 0;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(40px, 7vw, 80px);
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeIn 0.8s ease 0.2s backwards;
            color: #fff;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 48px;
            animation: fadeIn 0.8s ease 0.4s backwards;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 0.8s ease 0.6s backwards;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            font-size: 18px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 245, 160, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            font-size: 18px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(0, 245, 160, 0.05);
        }

        /* Migration Platforms */
        .platforms {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            text-align: center;
            margin-bottom: 64px;
            animation: fadeIn 0.8s ease;
        }

        .migration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .migration-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeIn 0.8s ease backwards;
        }

        .migration-card:nth-child(1) { animation-delay: 0.2s; }
        .migration-card:nth-child(2) { animation-delay: 0.4s; }
        .migration-card:nth-child(3) { animation-delay: 0.6s; }
        .migration-card:nth-child(4) { animation-delay: 0.8s; }

        .migration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 245, 160, 0.05) 0%, rgba(0, 217, 245, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .migration-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 16px 48px rgba(0, 245, 160, 0.2);
        }

        .migration-card:hover::before {
            opacity: 1;
        }

        .migration-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 900;
            position: relative;
            z-index: 1;
            transition: transform 0.6s ease;
        }

        .migration-card:hover .migration-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .migration-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .migration-card p {
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        /* Features */
        .features {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .feature-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .feature-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-item:nth-child(1) { transition-delay: 0.1s; }
        .feature-item:nth-child(2) { transition-delay: 0.2s; }
        .feature-item:nth-child(3) { transition-delay: 0.3s; }
        .feature-item:nth-child(4) { transition-delay: 0.4s; }
        .feature-item:nth-child(5) { transition-delay: 0.5s; }
        .feature-item:nth-child(6) { transition-delay: 0.6s; }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 28px;
            transition: transform 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-item h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .feature-item p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* Process */
        .process {
            padding: 80px 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 64px;
        }

        .step {
            position: relative;
            animation: fadeIn 0.8s ease backwards;
        }

        .step:nth-child(1) { animation-delay: 0.2s; }
        .step:nth-child(2) { animation-delay: 0.4s; }
        .step:nth-child(3) { animation-delay: 0.6s; }
        .step:nth-child(4) { animation-delay: 0.8s; }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 24px;
            animation: pulse 2s ease infinite;
            transition: transform 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.15);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(0, 245, 160, 0.4);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(0, 245, 160, 0);
            }
        }

        .step h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .step p {
            color: var(--text-muted);
        }

        /* Pricing */
        .pricing {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.2);
        }

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

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
            transition: all 0.4s ease;
            animation: fadeIn 0.8s ease backwards;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.2s; }
        .pricing-card:nth-child(2) { animation-delay: 0.4s; }
        .pricing-card:nth-child(3) { animation-delay: 0.6s; }

        .pricing-card.featured {
            border-color: var(--accent);
            background: linear-gradient(135deg, rgba(0, 245, 160, 0.05) 0%, rgba(0, 217, 245, 0.05) 100%);
            transform: scale(1.05);
            position: relative;
        }

        .pricing-card.featured::after {
            content: '⭐ POPULAR';
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 16px 48px rgba(0, 245, 160, 0.3);
        }

        .pricing-card.featured:hover {
            transform: translateY(-8px) scale(1.07);
        }

        .plan-name {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .plan-price {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            margin-bottom: 8px;
        }

        .plan-price span {
            font-size: 20px;
            color: var(--text-muted);
        }

        .plan-description {
            color: var(--text-muted);
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .plan-features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideIn 0.5s ease forwards;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .pricing-card:hover .plan-features li:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:hover .plan-features li:nth-child(2) { animation-delay: 0.15s; }
        .pricing-card:hover .plan-features li:nth-child(3) { animation-delay: 0.2s; }
        .pricing-card:hover .plan-features li:nth-child(4) { animation-delay: 0.25s; }
        .pricing-card:hover .plan-features li:nth-child(5) { animation-delay: 0.3s; }
        .pricing-card:hover .plan-features li:nth-child(6) { animation-delay: 0.35s; }
        .pricing-card:hover .plan-features li:nth-child(7) { animation-delay: 0.4s; }
        .pricing-card:hover .plan-features li:nth-child(8) { animation-delay: 0.45s; }

        .plan-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            font-size: 18px;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(36px, 6vw, 64px);
            margin-bottom: 24px;
            animation: fadeIn 0.8s ease;
            color: #fff;
        }

        .cta-section p {
            font-size: 20px;
            color: var(--text-muted);
            margin-bottom: 48px;
            animation: fadeIn 0.8s ease 0.2s backwards;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
            }

            .migration-grid,
            .features-grid,
            .process-steps,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px) scale(1.02);
            }
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
            z-index: 9999;
            width: 0%;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px rgba(0, 245, 160, 0.5);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            color: var(--primary);
            border: none;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 245, 160, 0.3);
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 24px rgba(0, 245, 160, 0.5);
        }

        /* Custom Cursor */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s ease;
            opacity: 0;
        }

        /* Particle Canvas */
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
        }