/* Base Styles */
        :root {
            --primary: #6C63FF;
            --primary-dark: #564fd3;
            --secondary: #FF6584;
            --dark: #2A2A3C;
            --light: #F5F5F7;
            --gray: #8C8CA1;
            --success: #4CAF50;
            --warning: #FF9800;
            --danger: #F44336;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.dark-mode {
            background: linear-gradient(135deg, #0d0d17 0%, #0c1120 100%);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background: rgba(26, 26, 46, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        
        .zeno {
            color: var(--light);
        }

        .launch {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .theme-toggle-container {
            margin-left: 20px;
        }

        .theme-toggle {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .toggle-icon {
            font-size: 14px;
            padding: 0 5px;
            color: var(--light);
        }

        .toggle-switch {
            width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
        }

        /* Hero Section with Particles */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #6C63FF, #FF6584);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(108, 99, 255, 0.4);
        }

        .cta-button i {
            margin-left: 10px;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: rgba(26, 26, 46, 0.6);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: rgba(42, 42, 60, 0.7);
            border-radius: 20px;
            padding: 40px;
            transition: var(--transition);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(108, 99, 255, 0.3);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(108, 99, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .features-list li i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.1rem;
            margin-top: 5px;
        }

        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 20px;
        }

        .service-price span {
            font-size: 1rem;
            color: var(--gray);
            font-weight: normal;
        }

        .service-link {
            display: inline-block;
            width: 100%;
            padding: 12px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 10px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .service-link:hover {
            background: var(--primary);
            color: white;
        }

        .decoration {
            position: absolute;
            z-index: -1;
            opacity: 0.05;
            font-size: 15rem;
            color: var(--primary);
            transform: rotate(-15deg);
        }
        
        .dec-1 {
            top: -60px;
            right: -30px;
        }
        
        .dec-2 {
            bottom: -80px;
            left: -40px;
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: rgba(26, 26, 46, 0.6);
        }

        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .process-step {
            width: 250px;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: rgba(42, 42, 60, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
        }

        .process-step.active .step-number {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
            transform: scale(1.1);
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .process-step p {
            font-size: 0.95rem;
            color: var(--gray);
        }

        .connector {
            position: absolute;
            top: 40px;
            right: -40px;
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: rgba(26, 26, 46, 0.6);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(42, 42, 60, 0.7);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            background: rgba(108, 99, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .client-info h4 {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 5px;
        }

        .client-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .rating {
            color: #FFC107;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .testimonial-content p {
            color: var(--gray);
            font-style: italic;
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: rgba(26, 26, 46, 0.6);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(42, 42, 60, 0.7);
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(108, 99, 255, 0.3);
        }

        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--light);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer p {
            padding: 0 0 20px;
            color: var(--gray);
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 20px 20px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, #6C63FF 0%, #564fd3 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .cta-button.secondary {
            background: white;
            color: var(--primary);
            margin-left: 15px;
        }

        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        /* Footer */
        footer {
            background: rgba(15, 15, 25, 0.9);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .footer-column p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                padding: 20px;
                text-align: center;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
            
            .process-container {
                flex-direction: column;
                align-items: center;
            }
            
            .connector {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .cta-button.secondary {
                margin-left: 0;
                margin-top: 15px;
            }
        }