:root {
            --cosmic-purple: #8B3FD9;
            --cosmic-pink: #D946EF;
            --cosmic-blue: #3B82F6;
            --cosmic-dark: #0F0A1F;
            --cosmic-darker: #08050F;
            --cosmic-light: #F8F9FF;
            --cosmic-gray: #94A3B8;
            --cosmic-gradient: linear-gradient(135deg, #8B3FD9 0%, #D946EF 50%, #3B82F6 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--cosmic-darker);
            color: var(--cosmic-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Navigation */
        nav {
           position: fixed;
            top: 0;
            width: 100%;
            padding: 0.5rem 5%;
            background: rgba(15, 10, 31, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(139, 63, 217, 0.1);
            transition: all 0.3s 
        ease;
        }
        
        nav.scrolled {
            padding: 1rem 5%;
            background: rgba(15, 10, 31, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo img {
            height: 83px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--cosmic-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: white;
        }
        
        .btn-primary {
            padding: 0.75rem 3.8rem;
            background: var(--cosmic-gradient);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 63, 217, 0.4);
        }
        
        .btn-secondary {
            padding: 0.75rem 1.8rem;
            background: transparent;
            border: 1.5px solid rgba(139, 63, 217, 0.5);
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            border-color: var(--cosmic-purple);
            background: rgba(139, 63, 217, 0.1);
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        .section {
            padding: 8rem 0;
        }
        
        .section-small {
            padding: 5rem 0;
        }
        
        /* Section Label */
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--cosmic-purple);
            margin-bottom: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 63, 217, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            border-radius: 50%;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hero-text h1 .rotating-text {
            background: var(--cosmic-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            color: var(--cosmic-gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat {
            text-align: left;
        }
        
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--cosmic-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--cosmic-gray);
        }
        
        .hero-image {
            position: relative;
        }
        
        .mockup-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(139, 63, 217, 0.2);
        }
        
        .mockup-container video,
        .mockup-container iframe {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .video-placeholder {
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
            background: linear-gradient(135deg, rgba(139, 63, 217, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
        }
        
        .video-placeholder svg {
            width: 60px;
            height: 60px;
            fill: var(--cosmic-purple);
            opacity: 0.4;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .video-overlay:hover {
            background: rgba(0, 0, 0, 0.5);
        }
        
        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: var(--cosmic-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(139, 63, 217, 0.5);
            transition: all 0.3s ease;
        }
        
        .video-overlay:hover .play-button {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(139, 63, 217, 0.7);
        }
        
        .play-button svg {
            width: 35px;
            height: 35px;
            fill: white;
            margin-left: 4px;
        }
        
        /* Feature Cards Grid */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: rgba(15, 10, 31, 0.5);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(139, 63, 217, 0.1);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            border-color: var(--cosmic-purple);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(139, 63, 217, 0.2);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--cosmic-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }
        
        .feature-card p {
            color: var(--cosmic-gray);
            line-height: 1.7;
        }
        
        /* Content Section */
        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .content-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .content-text p {
            font-size: 1.1rem;
            color: var(--cosmic-gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .content-image {
            position: relative;
            cursor: pointer;
        }
        
        .content-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        /* Steps Section */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .step-card {
            position: relative;
            padding: 2.5rem;
            background: rgba(15, 10, 31, 0.5);
            border: 1px solid rgba(139, 63, 217, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            border-color: var(--cosmic-purple);
            transform: translateY(-5px);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 2.5rem;
            width: 50px;
            height: 50px;
            background: var(--cosmic-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .step-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--cosmic-purple);
            margin-bottom: 1rem;
        }
        
        .step-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }
        
        .step-card p {
            color: var(--cosmic-gray);
            line-height: 1.7;
        }
        
        /* Verifactu Badge */
        .verifactu-badge-section {
            background: linear-gradient(135deg, rgba(139, 63, 217, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border-radius: 20px;
            padding: 4rem;
            text-align: center;
            border: 1px solid rgba(139, 63, 217, 0.2);
            margin: 4rem 0;
        }
        
        .verifactu-icon {
            width: 80px;
            height: 80px;
            background: var(--cosmic-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
        }
        
        .verifactu-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }
        
        .verifactu-badge-section h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .verifactu-badge-section p {
            font-size: 1.1rem;
            color: var(--cosmic-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Screenshots Grid */
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .screenshot-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(139, 63, 217, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .screenshot-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(139, 63, 217, 0.3);
        }
        
        .screenshot-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .screenshot-item:hover img {
            transform: scale(1.05);
        }
        
        .screenshot-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--cosmic-gradient);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .screenshot-info {
            padding: 2rem;
            background: rgba(15, 10, 31, 0.8);
        }
        
        .screenshot-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .screenshot-info p {
            color: var(--cosmic-gray);
            font-size: 0.95rem;
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(8, 5, 15, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            animation: zoomIn 0.3s ease;
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .lightbox-content img {
            width: 100%;
            height: auto;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(139, 63, 217, 0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            width: 40px;
            height: 40px;
            background: var(--cosmic-gradient);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }
        
        .lightbox-close:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 4px 20px rgba(139, 63, 217, 0.6);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--cosmic-gradient);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .lightbox-nav:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 20px rgba(139, 63, 217, 0.6);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        
        .lightbox-caption {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            text-align: center;
            color: var(--cosmic-light);
        }
        
        .lightbox-caption h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .lightbox-caption p {
            color: var(--cosmic-gray);
            font-size: 0.95rem;
        }
        
        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .pricing-card {
            background: rgba(15, 10, 31, 0.5);
            padding: 3rem 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(139, 63, 217, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(139, 63, 217, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 2px solid var(--cosmic-purple);
            transform: scale(1.05);
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(139, 63, 217, 0.2);
        }
        
        .pricing-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--cosmic-gradient);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .pricing-card .description {
            color: var(--cosmic-gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        
        .price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin: 1.5rem 0;
        }
        
        .price span {
            font-size: 1.2rem;
            color: var(--cosmic-gray);
            font-weight: 400;
        }
        
        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }
        
        .pricing-features li {
            padding: 0.8rem 0;
            color: var(--cosmic-gray);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .pricing-features li::before {
            content: '✓';
            color: var(--cosmic-purple);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .pricing-card .btn-primary,
        .pricing-card .btn-secondary {
            width: 100%;
            text-align: center;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .testimonial-card {
            background: rgba(15, 10, 31, 0.5);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(139, 63, 217, 0.1);
        }
        
        .testimonial-card p {
            color: var(--cosmic-gray);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--cosmic-gradient);
        }
        
        .author-info h5 {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.2rem;
        }
        
        .author-info span {
            font-size: 0.85rem;
            color: var(--cosmic-gray);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--cosmic-gradient);
            border-radius: 20px;
            padding: 5rem 4rem;
            text-align: center;
            margin: 4rem 0;
        }
        
        .cta-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .cta-section .btn-primary {
            background: white;
            color: var(--cosmic-purple);
        }
        
        /* Footer */
        footer {
            border-top: 1px solid rgba(139, 63, 217, 0.1);
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand p {
            color: var(--cosmic-gray);
            margin-top: 1rem;
            line-height: 1.7;
        }
        
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links ul li a {
            color: var(--cosmic-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(139, 63, 217, 0.1);
            color: var(--cosmic-gray);
            font-size: 0.9rem;
        }
        
        /* Text Alignment Utilities */
        .text-center {
            text-align: center;
        }
        
        .text-center h2 {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .text-center p {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .content-section {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .feature-cards,
            .steps,
            .pricing-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .screenshots-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .footer-content {
                display: flex;
                flex-direction: column;
            }
            
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .lightbox-prev {
                left: 10px;
            }
            
            .lightbox-next {
                right: 10px;
            }
        }