        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-neon: #A3ADFF;
            --primary-blue: #2640D4;
            --dark-blue: #000522;
            --white: #FFFFFF;
            --black: #000000;
            --electric-blue: #4C6EF5;
            --deep-purple: #364FC7;
            --midnight: #1A1B23;
            --charcoal: #25262B;
            --accent-cyan: #22D3EE;
            --accent-violet: #8B5CF6;

            --gradient-primary: linear-gradient(135deg, #2640D4 0%, #A3ADFF 100%);
            --gradient-secondary: linear-gradient(135deg, #4C6EF5 0%, #8B5CF6 100%);
            --gradient-dark: linear-gradient(135deg, #000522 0%, #1A1B23 100%);
            --gradient-card: linear-gradient(145deg, rgba(163, 173, 255, 0.1) 0%, rgba(38, 64, 212, 0.1) 100%);

            --shadow-neon: 0 8px 32px rgba(163, 173, 255, 0.3);
            --shadow-blue: 0 8px 32px rgba(38, 64, 212, 0.3);
            --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.3);
            --shadow-cyan: 0 8px 32px rgba(34, 211, 238, 0.3);
        }

        body {
            font-family: 'Figtree', sans-serif;
            background: var(--gradient-dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 5, 34, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(163, 173, 255, 0.2);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo svg {
            height: 32px;
            width: auto;
        }

        .logo svg path {
            fill: var(--white);
            transition: fill 0.3s ease;
        }

        .logo:hover svg path {
            fill: var(--primary-neon);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-neon);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-neon) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-neon);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-neon);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .floating-element {
            width: 400px;
            height: 400px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            border: 3px solid var(--accent-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
            box-shadow: var(--shadow-purple);
            position: relative;
            overflow: hidden;
        }

        .floating-element::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            border-radius: 50%;
            animation: spin 20s linear infinite;
        }

        .floating-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .floating-logo {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-logo svg {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
        }

        .floating-logo svg path {
            fill: var(--white);
        }

        .floating-stats {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .floating-stat {
            text-align: center;
        }

        .floating-stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            display: block;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .floating-stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-icon {
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            animation: orbit 15s linear infinite;
        }

        .floating-icon:nth-child(1) {
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 20%;
            right: 20%;
            animation-delay: -5s;
        }

        .floating-icon:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
        }

        .floating-icon:nth-child(4) {
            bottom: 20%;
            right: 20%;
            animation-delay: -15s;
        }

        .floating-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes orbit {
            0% {
                transform: translateY(0px) scale(1);
            }

            25% {
                transform: translateY(-10px) scale(1.1);
            }

            50% {
                transform: translateY(0px) scale(1);
            }

            75% {
                transform: translateY(10px) scale(0.9);
            }

            100% {
                transform: translateY(0px) scale(1);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-neon) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--gradient-card);
            border: 1px solid rgba(163, 173, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-neon);
            box-shadow: var(--shadow-neon);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid rgba(139, 92, 246, 0.4);
            box-shadow: var(--shadow-purple);
            transition: all 0.3s ease;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
        }

        .benefit-icon svg path {
            stroke: var(--dark-blue);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
            box-shadow: var(--shadow-cyan);
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white);
        }

        .benefit-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background: var(--black);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: var(--gradient-card);
            border: 1px solid rgba(163, 173, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            box-shadow: var(--shadow-blue);
        }

        .product-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-neon);
            margin-bottom: 15px;
        }

        .product-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .product-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .product-features li {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .product-features li::before {
            content: '✓';
            color: var(--primary-neon);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .product-demo-btn {
            padding: 12px 25px;
            background: transparent;
            border: 2px solid var(--primary-neon);
            border-radius: 25px;
            color: var(--primary-neon);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .product-demo-btn:hover {
            background: var(--primary-neon);
            color: var(--dark-blue);
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats {
            padding: 100px 0;
            background: var(--gradient-primary);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--white);
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-blue) 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--gradient-card);
            border: 1px solid rgba(163, 173, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-cyan);
            opacity: 0.4;
        }

        .testimonial-text {
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .testimonial-author {
            color: var(--primary-neon);
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--black);
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            margin-top: 40px;
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-neon);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(163, 173, 255, 0.1);
            border: 1px solid rgba(163, 173, 255, 0.3);
            border-radius: 10px;
            color: var(--white);
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-neon);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 15px 40px;
            border: 2px solid var(--primary-neon);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-neon);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            padding: 60px 0 40px;
            border-top: 1px solid rgba(163, 173, 255, 0.2);
        }

        .footer-content {
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo svg {
            height: 40px;
            width: auto;
        }

        .footer-logo svg path {
            fill: var(--white);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-neon);
        }

        .footer-bottom {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

            .floating-element {
                width: 300px;
                height: 300px;
            }

            .floating-logo svg {
                height: 45px;
            }

            .floating-stat-number {
                font-size: 1.4rem;
            }

            .benefits-grid,
            .products-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                gap: 20px;
                flex-direction: column;
            }

            .footer-links a {
                padding: 10px 0;
            }
        }

        .section {
            text-align: left;
        }

        .section h2 {
            /* text-align: center; */
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            margin-top: 25px;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-neon) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        .section a, .section a:visited {
            color: #fff;
            text-decoration: underline;
        }

        