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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #fff;
            overflow-x: hidden;
            background: #0a0e27;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 5%;
            background: rgba(10, 14, 39, 0.98);
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo span {
            font-size: 28px;
            animation: logoSpin 3s ease-in-out infinite;
        }

        @keyframes logoSpin {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(15deg); }
        }

        .nav-center {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-center a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-center a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #ec4899);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-center a:hover {
            color: #fff;
        }

        .nav-center a:hover::before {
            width: 100%;
        }

        .btn-contact {
            padding: 12px 28px;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(236, 72, 153, 0.6);
            background: linear-gradient(135deg, #ec4899, #6366f1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(10, 14, 39, 0.98);
            backdrop-filter: blur(20px);
            padding: 100px 40px 40px;
            transition: right 0.3s ease;
            border-left: 1px solid rgba(99, 102, 241, 0.3);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .mobile-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-menu a:hover {
            color: #6366f1;
            transform: translateX(10px);
        }

        .hero {
            background: linear-gradient(135deg, #0a0e27 0%, #1e1b4b 50%, #312e81 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 120px 5% 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: -300px;
            right: -200px;
            animation: float 15s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -250px;
            left: -150px;
            animation: float 20s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(36px, 8vw, 72px);
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            font-weight: 900;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: clamp(18px, 4vw, 28px);
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 0.8s ease 0.2s backwards;
            font-weight: 400;
        }

        .hero p {
            font-size: clamp(14px, 2vw, 18px);
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.7);
            animation: fadeInUp 0.8s ease 0.3s backwards;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

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

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.4s backwards;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 36px;
            border: none;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366f1, #ec4899);
            color: #fff;
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(236, 72, 153, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            transform: translateY(-3px);
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
            animation: fadeInUp 0.8s ease 0.6s backwards;
            flex-wrap: wrap;
        }

        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 24px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .hero-feature-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(99, 102, 241, 0.6);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .hero-feature-icon {
            font-size: 20px;
            animation: bounce 2s ease-in-out infinite;
        }

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

        .hero-feature-item:nth-child(3) .hero-feature-icon {
            animation-delay: 0.4s;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .hero-feature-text {
            font-size: 14px;
            font-weight: 500;
        }

        .features {
            background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: 10%;
            left: -100px;
            animation: float 20s ease-in-out infinite;
        }

        .features::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: 10%;
            right: -100px;
            animation: float 25s ease-in-out infinite reverse;
        }

        .features h2 {
            text-align: center;
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: 60px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 35px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            position: relative;
            z-index: 1;
            font-size: 14px;
        }

        .mobile-showcase {
            background: linear-gradient(180deg, #0a0e27 0%, #1e1b4b 100%);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .showcase-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .showcase-container h2 {
            text-align: center;
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: 15px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .showcase-subtitle {
            text-align: center;
            font-size: clamp(16px, 3vw, 20px);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 60px;
        }

        .showcase-content-flex {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 60px;
            align-items: center;
        }

        .showcase-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .showcase-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .showcase-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(99, 102, 241, 0.5);
            transform: translateX(-10px);
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
        }

        .showcase-features:last-child .showcase-item:hover {
            transform: translateX(10px);
        }

        .showcase-icon {
            font-size: 32px;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .showcase-item:hover .showcase-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(99, 102, 241, 0.4);
        }

        .showcase-text h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #fff;
        }

        .showcase-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .phone-mockup-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .phone-frame {
            width: 320px;
            height: 640px;
            background: linear-gradient(135deg, #1e1b4b, #312e81);
            border-radius: 40px;
            padding: 15px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 
                        0 0 0 1px rgba(255, 255, 255, 0.1),
                        0 0 60px rgba(99, 102, 241, 0.4);
            position: relative;
            animation: phoneFloat 6s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .phone-frame:hover {
            transform: scale(1.05);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
                        0 0 0 1px rgba(255, 255, 255, 0.2),
                        0 0 80px rgba(236, 72, 153, 0.6);
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .phone-notch {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: #0a0e27;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0e27, #1e1b4b);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
        }

        .screen-content {
            padding: 50px 25px 25px;
            height: 100%;
        }

        .screen-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
            animation: logoRotate 4s linear infinite;
        }

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

        .rotating-logo-section {
            background: linear-gradient(180deg, #312e81 0%, #1e1b4b 50%, #0a0e27 100%);
            padding: 120px 5%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .rotating-logo-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
        }

        .logo-container {
            position: relative;
            width: 400px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .center-logo {
            position: relative;
            z-index: 10;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6),
                        0 0 100px rgba(236, 72, 153, 0.4),
                        inset 0 0 50px rgba(255, 255, 255, 0.1);
            animation: logoFloat 4s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .center-logo-inner {
            width: 170px;
            height: 170px;
            background: #0a0e27;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
        }

        .logo-icon {
            font-size: 70px;
            filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
            animation: logoImageFloat 3s ease-in-out infinite;
        }

        @keyframes logoImageFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.05); }
        }

        .center-logo-inner .logo-text {
            font-size: 18px;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        .orbit {
            position: absolute;
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .orbit-1 {
            width: 280px;
            height: 280px;
            border-color: rgba(99, 102, 241, 0.4);
            animation-duration: 15s;
        }

        .orbit-2 {
            width: 340px;
            height: 340px;
            border-color: rgba(236, 72, 153, 0.4);
            animation-duration: 20s;
            animation-direction: reverse;
        }

        .orbit-3 {
            width: 400px;
            height: 400px;
            border-color: rgba(245, 158, 11, 0.4);
            animation-duration: 25s;
        }

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

        .orbit-dot {
            position: absolute;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 
                        0 0 60px rgba(236, 72, 153, 0.4);
            transition: all 0.3s ease;
        }

        .orbit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: orbitIconPulse 2s ease-in-out infinite;
        }

        @keyframes orbitIconPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
            }
            50% { 
                transform: scale(1.1);
                box-shadow: 0 0 50px rgba(236, 72, 153, 0.8);
            }
        }

        .orbit-icon-text {
            font-size: 24px;
        }

        .orbit-secondary {
            width: 40px;
            height: 40px;
            animation-delay: 0.5s;
        }

        .orbit-secondary .orbit-icon-text {
            font-size: 18px;
        }

        .orbit-1 .orbit-dot {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
            border-color: rgba(99, 102, 241, 0.5);
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
        }

        .orbit-2 .orbit-dot {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(244, 63, 94, 0.3));
            border-color: rgba(236, 72, 153, 0.5);
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
        }

        .orbit-3 .orbit-dot {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(251, 146, 60, 0.3));
            border-color: rgba(245, 158, 11, 0.5);
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(99, 102, 241, 0.6);
            border-radius: 50%;
            animation: floatParticle 8s ease-in-out infinite;
        }

        @keyframes floatParticle {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
            25% { 
                transform: translate(100px, -100px) scale(1.5);
                opacity: 0.8;
            }
            50% { 
                transform: translate(200px, 50px) scale(0.8);
                opacity: 0.5;
            }
            75% { 
                transform: translate(50px, 150px) scale(1.2);
                opacity: 0.7;
            }
        }

        .particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; background: rgba(236, 72, 153, 0.6); }
        .particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 4s; background: rgba(245, 158, 11, 0.6); }
        .particle:nth-child(4) { top: 40%; left: 70%; animation-delay: 1s; }
        .particle:nth-child(5) { top: 10%; left: 90%; animation-delay: 3s; background: rgba(236, 72, 153, 0.6); }
        .particle:nth-child(6) { top: 90%; left: 60%; animation-delay: 5s; background: rgba(245, 158, 11, 0.6); }

        .logo-section-text {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 5;
            max-width: 600px;
        }

        .logo-section-text h2 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 15px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
        }

        .logo-section-text p {
            font-size: clamp(14px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-style: italic;
        }

        .services {
            background: linear-gradient(180deg, #312e81 0%, #0a0e27 100%);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 18s ease-in-out infinite;
        }

        .services::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 22s ease-in-out infinite reverse;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .services-container h2 {
            text-align: center;
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
        }

        .services-subtitle {
            text-align: center;
            font-size: clamp(16px, 3vw, 20px);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: rgba(99, 102, 241, 0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: all 0.6s ease;
            transform: scale(0);
        }

        .service-card:hover::before {
            opacity: 1;
            transform: scale(1) rotate(45deg);
        }

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

        .service-card:hover::after {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.6);
            box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5),
                        0 10px 40px rgba(236, 72, 153, 0.3),
                        inset 0 0 60px rgba(99, 102, 241, 0.1);
        }

        .service-icon {
            font-size: 56px;
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
            z-index: 1;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
        }

        .service-card:hover .service-icon {
            transform: scale(1.3) rotate(360deg);
            filter: drop-shadow(0 0 40px rgba(236, 72, 153, 0.8));
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .service-card:hover h3 {
            color: #fff;
            text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
            transform: translateX(5px);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: 15px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
            transform: translateX(5px);
        }

        .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
            z-index: 2;
        }

        .service-card:hover .service-tag {
            opacity: 1;
            transform: translateY(0);
        }

        .service-features {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-features {
            opacity: 1;
            max-height: 200px;
        }

        .service-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInLeft 0.5s ease forwards;
        }

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

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

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

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

        .service-feature-item::before {
            content: '✓';
            background: linear-gradient(135deg, #6366f1, #ec4899);
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
        }

        .cta-section {
            background: linear-gradient(135deg, #0a0e27 0%, #1e1b4b 100%);
            padding: 100px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 6s ease-in-out infinite;
        }

        .cta-section h2 {
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: clamp(16px, 3vw, 20px);
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 1;
        }

        .faq-section {
            background: linear-gradient(180deg, #1e1b4b 0%, #0a0e27 100%);
            padding: 100px 5%;
            position: relative;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-container h2 {
            text-align: center;
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: 60px;
            background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 20px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-item:hover {
            border-color: rgba(99, 102, 241, 0.5);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(99, 102, 241, 0.1);
        }

        .faq-icon {
            font-size: 28px;
            min-width: 40px;
            transition: transform 0.3s ease;
        }

        .faq-item:hover .faq-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .faq-question h3 {
            flex: 1;
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .faq-toggle {
            font-size: 32px;
            font-weight: 300;
            color: #6366f1;
            transition: all 0.3s ease;
            min-width: 30px;
            text-align: center;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            color: #ec4899;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            padding: 0 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 25px;
        }

        .faq-answer p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: 15px;
            margin: 0;
        }

        footer {
            background: #0a0e27;
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 5%;
            text-align: center;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }

        footer p {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 25px rgba(236, 72, 153, 0.7);
        }

        @media (max-width: 1024px) {
            .showcase-content-flex {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .phone-mockup-container {
                order: -1;
            }

            .showcase-item:hover {
                transform: translateY(-5px) !important;
            }

            .logo-container {
                width: 350px;
                height: 350px;
            }

            .orbit-1 { width: 250px; height: 250px; }
            .orbit-2 { width: 300px; height: 300px; }
            .orbit-3 { width: 350px; height: 350px; }
        }

        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .features,
            .mobile-showcase,
            .services,
            .rotating-logo-section,
            .cta-section,
            .faq-section {
                padding: 60px 5%;
            }

            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .phone-frame {
                width: 280px;
                height: 560px;
            }

            .showcase-item {
                padding: 15px;
            }

            .showcase-icon {
                font-size: 28px;
                min-width: 45px;
                height: 45px;
            }

            .showcase-text h4 {
                font-size: 16px;
            }

            .logo-container {
                width: 300px;
                height: 300px;
            }

            .center-logo {
                width: 140px;
                height: 140px;
            }

            .center-logo-inner {
                width: 120px;
                height: 120px;
            }

            .logo-icon {
                font-size: 50px;
            }

            .center-logo-inner .logo-text {
                font-size: 14px;
            }

            .orbit-icon {
                width: 42px;
                height: 42px;
            }

            .orbit-icon-text {
                font-size: 20px;
            }

            .orbit-secondary {
                width: 35px;
                height: 35px;
            }

            .orbit-secondary .orbit-icon-text {
                font-size: 16px;
            }

            .orbit-1 { width: 220px; height: 220px; }
            .orbit-2 { width: 260px; height: 260px; }
            .orbit-3 { width: 300px; height: 300px; }

            .rotating-logo-section {
                min-height: 80vh;
            }

            .logo-section-text {
                bottom: 40px;
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }

            .btn-contact {
                padding: 10px 20px;
                font-size: 13px;
            }
        }

        html {
            scroll-behavior: smooth;
        }

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

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0);
            animation: ripple-animation 0.6s ease-out;
            pointer-events: none;
        }
        
        @keyframes ripple-animation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
    