 :root {
            --primary-blue: #3b82f6;
            --primary-blue-dark: #2563eb;
            --primary-blue-light: #60a5fa;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.25);
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.06);
            --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        .aurora-background {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #fef7ff 50%, #fefce8 75%, #f0fdf4 100%);
            background-size: 400% 400%;
            animation: aurora 20s ease infinite;
            min-height: 100vh;
            position: relative;
            width: 100%;
        }

        .aurora-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

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

        .glassmorphism-header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border-bottom: 1px solid var(--glass-border);
            box-shadow: var(--shadow-light);
        }

        .auth-modal {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-large);
        }

        .gradient-text {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 200%;
            animation: gradient-shift 8s ease infinite;
        }

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

        .glow-button {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .glow-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .glow-button:hover {
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6), 0 0 0 1px rgba(59, 130, 246, 0.2);
            transform: translateY(-2px);
        }

        .glow-button:hover::before {
            left: 100%;
        }

        .input-field {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(203, 213, 225, 0.5);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .input-field:focus {
            background: rgba(255, 255, 255, 0.9);
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .tab-button {
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-button.active {
            color: var(--primary-blue);
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
            border-radius: 2px;
        }

        .print-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            border-radius: 12px;
            padding: 10px;
            box-shadow: var(--shadow-medium);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .floating-shape {
            position: absolute;
            background: rgba(59, 130, 246, 0.05);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        .floating-shape:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-duration: 25s;
        }

        .floating-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-duration: 30s;
            animation-direction: reverse;
        }

        .floating-shape:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-duration: 20s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

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

        .slide-in {
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from { 
                opacity: 0; 
                transform: translateX(-20px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        .hero-section {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        /* Hero Background Shapes */
        .hero-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        /* Animated Circles */
        .hero-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid;
            animation: float-hero 20s ease-in-out infinite;
        }

        .hero-circle-1 {
            width: 150px;
            height: 150px;
            border-color: rgba(59, 130, 246, 0.2);
            top: 10%;
            left: 5%;
            animation-duration: 18s;
        }

        .hero-circle-2 {
            width: 100px;
            height: 100px;
            border-color: rgba(139, 92, 246, 0.25);
            top: 60%;
            right: 10%;
            animation-duration: 22s;
            animation-delay: 2s;
        }

        .hero-circle-3 {
            width: 80px;
            height: 80px;
            border-color: rgba(236, 72, 153, 0.2);
            bottom: 20%;
            left: 15%;
            animation-duration: 16s;
            animation-delay: 4s;
        }

        .hero-circle-4 {
            width: 120px;
            height: 120px;
            border-color: rgba(59, 130, 246, 0.15);
            top: 30%;
            right: 20%;
            animation-duration: 20s;
            animation-delay: 1s;
        }

        .hero-circle-5 {
            width: 90px;
            height: 90px;
            border-color: rgba(139, 92, 246, 0.2);
            bottom: 15%;
            right: 30%;
            animation-duration: 19s;
            animation-delay: 3s;
        }

        .hero-circle-6 {
            width: 110px;
            height: 110px;
            border-color: rgba(236, 72, 153, 0.18);
            top: 50%;
            left: 8%;
            animation-duration: 21s;
            animation-delay: 5s;
        }

        @keyframes float-hero {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }
            25% {
                transform: translate(20px, -30px) scale(1.1);
                opacity: 0.8;
            }
            50% {
                transform: translate(-15px, 20px) scale(0.9);
                opacity: 1;
            }
            75% {
                transform: translate(30px, 10px) scale(1.05);
                opacity: 0.9;
            }
        }

        /* Geometric Squares */
        .hero-square {
            position: absolute;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            animation: rotate-square 25s linear infinite;
        }

        .hero-square-1 {
            width: 100px;
            height: 100px;
            top: 15%;
            right: 15%;
            animation-duration: 20s;
        }

        .hero-square-2 {
            width: 70px;
            height: 70px;
            bottom: 25%;
            right: 25%;
            animation-duration: 30s;
            animation-direction: reverse;
        }

        .hero-square-3 {
            width: 85px;
            height: 85px;
            top: 40%;
            left: 25%;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(59, 130, 246, 0.1));
            animation-duration: 25s;
        }

        @keyframes rotate-square {
            0% {
                transform: rotate(0deg);
                border-radius: 20%;
            }
            25% {
                border-radius: 40%;
            }
            50% {
                transform: rotate(180deg);
                border-radius: 50%;
            }
            75% {
                border-radius: 30%;
            }
            100% {
                transform: rotate(360deg);
                border-radius: 20%;
            }
        }

        /* Triangle */
        .hero-triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-left: 60px solid transparent;
            border-right: 60px solid transparent;
            border-bottom: 100px solid rgba(236, 72, 153, 0.1);
            top: 20%;
            left: 20%;
            animation: spin-triangle 30s linear infinite;
        }

        .hero-triangle-2 {
            border-left: 45px solid transparent;
            border-right: 45px solid transparent;
            border-bottom: 75px solid rgba(139, 92, 246, 0.12);
            bottom: 30%;
            right: 18%;
            animation-duration: 35s;
            animation-direction: reverse;
        }

        @keyframes spin-triangle {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Plus Signs */
        .hero-plus {
            position: absolute;
            font-size: 2.5rem;
            font-weight: 300;
            color: rgba(59, 130, 246, 0.25);
            animation: rotate-plus 15s linear infinite;
        }

        .hero-plus-1 {
            top: 18%;
            right: 8%;
            animation-duration: 12s;
        }

        .hero-plus-2 {
            bottom: 22%;
            left: 12%;
            color: rgba(139, 92, 246, 0.25);
            animation-duration: 18s;
        }

        .hero-plus-3 {
            top: 55%;
            right: 35%;
            color: rgba(236, 72, 153, 0.25);
            font-size: 2rem;
            animation-duration: 14s;
        }

        @keyframes rotate-plus {
            0% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) scale(1.2);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        /* Stars */
        .hero-star {
            position: absolute;
            animation: twinkle 3s ease-in-out infinite;
        }

        .hero-star-1 {
            top: 12%;
            left: 18%;
        }

        .hero-star-2 {
            bottom: 18%;
            right: 22%;
            animation-delay: 1s;
        }

        .hero-star-3 {
            top: 65%;
            left: 35%;
            animation-delay: 2s;
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        /* Wavy Lines */
        .hero-wave {
            position: absolute;
            animation: wave-move 6s ease-in-out infinite;
        }

        .hero-wave-1 {
            top: 35%;
            left: 5%;
        }

        .hero-wave-2 {
            bottom: 35%;
            right: 8%;
            animation-delay: 3s;
        }

        @keyframes wave-move {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(20px);
            }
        }

        /* Zigzag */
        .hero-zigzag {
            position: absolute;
            animation: zigzag-float 8s ease-in-out infinite;
        }

        .hero-zigzag-1 {
            top: 45%;
            right: 12%;
        }

        @keyframes zigzag-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-15px) rotate(10deg);
                opacity: 0.6;
            }
        }

        /* Dashed Circles */
        .hero-dashed-circle {
            position: absolute;
            animation: rotate-slow 40s linear infinite;
        }

        .hero-dashed-1 {
            top: 25%;
            left: 30%;
        }

        .hero-dashed-2 {
            bottom: 20%;
            right: 15%;
            animation-duration: 50s;
            animation-direction: reverse;
        }

        @keyframes rotate-slow {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Dotted Patterns */
        .hero-dots {
            position: absolute;
            opacity: 0.6;
            animation: fade-pulse 4s ease-in-out infinite;
        }

        .hero-dots-1 {
            top: 25%;
            left: 10%;
        }

        .hero-dots-2 {
            bottom: 30%;
            right: 12%;
            animation-delay: 2s;
        }

        .hero-dots-3 {
            top: 58%;
            left: 22%;
            animation-delay: 4s;
        }

        @keyframes fade-pulse {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* Curved Lines */
        .hero-curve {
            position: absolute;
            animation: draw-curve 8s ease-in-out infinite;
        }

        .hero-curve-1 {
            top: 10%;
            right: 5%;
        }

        .hero-curve-2 {
            bottom: 15%;
            left: 8%;
            animation-delay: 4s;
        }

        @keyframes draw-curve {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1) rotate(0deg);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.1) rotate(10deg);
            }
        }

        /* Hexagons */
        .hero-hexagon {
            position: absolute;
            animation: hex-spin 20s linear infinite;
        }

        .hero-hex-1 {
            top: 28%;
            right: 28%;
        }

        .hero-hex-2 {
            bottom: 28%;
            left: 28%;
            animation-duration: 25s;
            animation-direction: reverse;
        }

        @keyframes hex-spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Arrows */
        .hero-arrow {
            position: absolute;
            animation: arrow-bounce 4s ease-in-out infinite;
        }

        .hero-arrow-1 {
            top: 42%;
            left: 8%;
        }

        .hero-arrow-2 {
            bottom: 38%;
            right: 10%;
            animation-delay: 2s;
        }

        @keyframes arrow-bounce {
            0%, 100% {
                transform: translate(0, 0);
                opacity: 0.3;
            }
            50% {
                transform: translate(10px, -10px);
                opacity: 0.7;
            }
        }

        /* Floating Particles */
        .hero-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.4);
            animation: particle-float 15s ease-in-out infinite;
        }

        .hero-particle-1 {
            top: 15%;
            left: 25%;
            animation-duration: 12s;
        }

        .hero-particle-2 {
            top: 45%;
            right: 15%;
            background: rgba(139, 92, 246, 0.4);
            animation-duration: 14s;
            animation-delay: 2s;
        }

        .hero-particle-3 {
            bottom: 25%;
            left: 18%;
            background: rgba(236, 72, 153, 0.4);
            width: 4px;
            height: 4px;
            animation-duration: 16s;
            animation-delay: 4s;
        }

        .hero-particle-4 {
            top: 38%;
            left: 42%;
            background: rgba(59, 130, 246, 0.3);
            width: 5px;
            height: 5px;
            animation-duration: 13s;
            animation-delay: 1s;
        }

        .hero-particle-5 {
            bottom: 42%;
            right: 28%;
            background: rgba(139, 92, 246, 0.35);
            animation-duration: 15s;
            animation-delay: 3s;
        }

        .hero-particle-6 {
            top: 68%;
            left: 38%;
            background: rgba(236, 72, 153, 0.35);
            width: 7px;
            height: 7px;
            animation-duration: 11s;
            animation-delay: 5s;
        }

        .hero-particle-7 {
            top: 22%;
            right: 42%;
            background: rgba(59, 130, 246, 0.3);
            width: 4px;
            height: 4px;
            animation-duration: 17s;
            animation-delay: 2.5s;
        }

        .hero-particle-8 {
            bottom: 32%;
            left: 48%;
            background: rgba(236, 72, 153, 0.4);
            animation-duration: 14s;
            animation-delay: 4.5s;
        }

        @keyframes particle-float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translate(15px, -20px) scale(1.2);
                opacity: 0.6;
            }
            50% {
                transform: translate(-10px, -35px) scale(0.8);
                opacity: 0.8;
            }
            75% {
                transform: translate(20px, -25px) scale(1.1);
                opacity: 0.5;
            }
        }

        /* Gradient Mesh */
        .hero-gradient-mesh {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: mesh-float 25s ease-in-out infinite;
        }

        .hero-mesh-1 {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
            top: -100px;
            left: -100px;
        }

        .hero-mesh-2 {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
            top: 50%;
            right: -150px;
            animation-delay: 8s;
            animation-duration: 30s;
        }

        .hero-mesh-3 {
            background: radial-gradient(circle, rgba(236, 72, 153, 0.6), transparent);
            bottom: -100px;
            left: 30%;
            animation-delay: 16s;
            animation-duration: 20s;
        }

        @keyframes mesh-float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.2);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.8);
            }
        }

        .footer {
            margin-top: 40px;
            padding: 24px 0;
            color: #6b7280;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 0.875rem;
        }

        /* Feature Cards */
        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-light);
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
            animation: rotate 3s linear infinite;
        }

        .feature-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .feature-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
            border-color: rgba(59, 130, 246, 0.5);
        }

        .feature-icon-wrapper {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            animation: float-icon 3s ease-in-out infinite;
        }

        @keyframes float-icon {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .feature-card:hover .feature-icon-wrapper {
            transform: scale(1.15) rotate(10deg) translateY(-5px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
        }

        /* Step Cards */
        .step-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-light);
            position: relative;
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
            overflow: hidden;
        }

        .step-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .step-card:hover::after {
            transform: scaleX(1);
        }

        .step-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .step-card:nth-child(2) {
            animation-delay: 0.3s;
        }

        .step-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .step-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            font-weight: bold;
            margin: 0 auto;
            box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            animation: pulse-number 2s ease-in-out infinite;
        }

        @keyframes pulse-number {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 24px rgba(59, 130, 246, 0.5);
            }
        }

        .step-card:hover .step-number {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.6);
        }

        /* CTA Card */
        .cta-card {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            border-radius: 24px;
            padding: 3rem 2rem;
            box-shadow: var(--shadow-extra-large);
            position: relative;
            overflow: hidden;
            animation: gradient-shift 5s ease infinite;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%);
            }
            100% {
                transform: translateX(100%) translateY(100%);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Pulse animation for buttons */
        .animate-pulse-slow {
            animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse-slow {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.95;
                transform: scale(1.02);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
                padding: 1rem 0;
            }

            .feature-card,
            .step-card {
                padding: 1.5rem;
            }

            .cta-card {
                padding: 3rem 1.5rem;
            }

            h1 {
                font-size: 2.5rem !important;
            }

            h2 {
                font-size: 2rem !important;
            }
        }

        /* New Decorative Elements */
        @keyframes blob {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(20px, -20px) scale(1.1);
            }
            50% {
                transform: translate(-20px, 20px) scale(0.9);
            }
            75% {
                transform: translate(20px, 20px) scale(1.05);
            }
        }

        .animate-blob {
            animation: blob 7s infinite;
        }

        .animation-delay-2000 {
            animation-delay: 2s;
        }

        .animation-delay-4000 {
            animation-delay: 4s;
        }

        /* Grid Pattern Background */
        .bg-grid-pattern {
            background-image: 
                linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        /* Animated Dash Line */
        @keyframes dash {
            to {
                stroke-dashoffset: -20;
            }
        }

        .animate-dash {
            animation: dash 2s linear infinite;
        }

        /* Arrow Slide Animation */
        @keyframes arrow-slide {
            0%, 100% {
                transform: translateX(0);
                opacity: 0.5;
            }
            50% {
                transform: translateX(10px);
                opacity: 1;
            }
        }

        .animate-arrow-slide {
            animation: arrow-slide 2s ease-in-out infinite;
        }

        /* Ping Slow Animation */
        @keyframes ping-slow {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.1;
            }
            100% {
                transform: scale(1);
                opacity: 0.3;
            }
        }

        .animate-ping-slow {
            animation: ping-slow 3s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .particle-1 {
            width: 4px;
            height: 4px;
            top: 20%;
            left: 10%;
            animation: float-particle 8s ease-in-out infinite;
        }

        .particle-2 {
            width: 6px;
            height: 6px;
            top: 40%;
            right: 15%;
            animation: float-particle 10s ease-in-out infinite;
            animation-delay: 1s;
        }

        .particle-3 {
            width: 3px;
            height: 3px;
            top: 60%;
            left: 20%;
            animation: float-particle 7s ease-in-out infinite;
            animation-delay: 2s;
        }

        .particle-4 {
            width: 5px;
            height: 5px;
            top: 80%;
            right: 25%;
            animation: float-particle 9s ease-in-out infinite;
            animation-delay: 3s;
        }

        .particle-5 {
            width: 4px;
            height: 4px;
            top: 30%;
            left: 80%;
            animation: float-particle 11s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        .particle-6 {
            width: 7px;
            height: 7px;
            top: 70%;
            left: 60%;
            animation: float-particle 8.5s ease-in-out infinite;
            animation-delay: 2.5s;
        }

        @keyframes float-particle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            50% {
                transform: translateY(-100px) translateX(50px);
            }
        }

        /* Large Floating Shapes */
        .shape-container {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-shape-large {
            position: absolute;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            opacity: 0.15;
            filter: blur(40px);
        }

        .shape-blue {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            top: -50px;
            left: -100px;
            animation: morph 15s ease-in-out infinite, float-shape 20s ease-in-out infinite;
        }

        .shape-purple {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            top: 50%;
            right: -150px;
            animation: morph 18s ease-in-out infinite reverse, float-shape 25s ease-in-out infinite;
            animation-delay: 2s;
        }

        .shape-pink {
            width: 280px;
            height: 280px;
            background: linear-gradient(135deg, #ec4899, #be185d);
            bottom: -100px;
            left: 30%;
            animation: morph 20s ease-in-out infinite, float-shape 22s ease-in-out infinite;
            animation-delay: 4s;
        }

        @keyframes morph {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
        }

        @keyframes float-shape {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        /* Gradient Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            pointer-events: none;
            animation: orbit 25s linear infinite;
        }

        .orb-1 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
            top: 20%;
            left: 10%;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
            top: 60%;
            right: 15%;
            animation-delay: 8s;
            animation-duration: 30s;
        }

        .orb-3 {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.6), transparent);
            bottom: 20%;
            left: 50%;
            animation-delay: 16s;
            animation-duration: 20s;
        }

        @keyframes orbit {
            0% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(50px, -30px) scale(1.2);
            }
            50% {
                transform: translate(30px, 50px) scale(0.8);
            }
            75% {
                transform: translate(-40px, 20px) scale(1.1);
            }
            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        /* Wave Background */
        .wave-background {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            pointer-events: none;
        }

        .wave {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
            animation: wave-animation 10s ease-in-out infinite;
        }

        @keyframes wave-animation {
            0%, 100% {
                transform: translateX(0) scaleX(1);
            }
            50% {
                transform: translateX(-25px) scaleX(1.1);
            }
        }

        /* Hexagon Pattern */
        .hexagon-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background-image: 
                linear-gradient(30deg, rgba(59, 130, 246, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.05) 87.5%, rgba(59, 130, 246, 0.05)),
                linear-gradient(150deg, rgba(59, 130, 246, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.05) 87.5%, rgba(59, 130, 246, 0.05)),
                linear-gradient(30deg, rgba(59, 130, 246, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.05) 87.5%, rgba(59, 130, 246, 0.05)),
                linear-gradient(150deg, rgba(59, 130, 246, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.05) 87.5%, rgba(59, 130, 246, 0.05));
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px, 40px 70px;
            opacity: 0.5;
            pointer-events: none;
        }

        /* Spinning Ring */
        .spinning-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            border: 3px solid transparent;
            border-top-color: rgba(59, 130, 246, 0.3);
            border-right-color: rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            animation: spin-ring 3s linear infinite;
            pointer-events: none;
        }

        .spinning-ring::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border: 3px solid transparent;
            border-bottom-color: rgba(236, 72, 153, 0.3);
            border-left-color: rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            animation: spin-ring 2s linear infinite reverse;
        }

        @keyframes spin-ring {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }


