        :root {
            --bg: #050505;
            --bg-card: #000000;
            --primary: #a10aff;
            --primary-light: rgba(161, 10, 255, 0.2);
            --primary-glow: rgba(161, 10, 255, 0.4);
            --text: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --gradient: linear-gradient(90deg, #a10aff, #7000ff);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 16px 0;
            z-index: 100;
            background-color: rgba(0, 0, 0, 0.833);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(255, 255, 255, 0.156);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 0.6s ease-out;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-container {
            display: flex;
            align-items: center;
            transition: all 0.5s ease;
        }

        .logo-container:hover {
            scale: 0.98;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            margin-right: 5px;
        }

        .company-name {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-left: 2px;
        }

.dash-btn {
    padding: 0.8rem 1.3rem;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 500;
    background: #140d2a;
    color: #8b62ff;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    flex: none;
    margin-top: 0;
    text-decoration: none;
}

.dash-btn:hover {
    scale: 0.98;
}

.buy-btn {
    flex: 1;
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    font-weight: 500;
    background: #a600ff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.buy-btn:hover {
    background: #8900df;
}

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 72px;
            background-image: url('/assets/core/img/bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
            animation: fadeIn 1s ease-out;
        }

        .hero-description {
            font-size: 20px;
            max-width: 600px;
            margin-bottom: 32px;
            color: #dadada;
            line-height: 1.6;
            animation: fadeIn 1.2s ease-out;
        }

        .why-us {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 60px;
            background: #ffffff;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 32px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            border-color: var(--primary);
        }

        .feature-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(161, 10, 255, 0.1);
            border-radius: 12px;
            margin-right: 16px;
            transition: all 0.5s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            transform: scale(1.1);
        }

        .feature-icon i {
            font-size: 20px;
            color: var(--primary);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon i {
            color: white;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 15px;
        }

        .services {
            padding: 100px 0;
        }

        .service-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 40px;
        }

        .service-tab {
            padding: 12px 24px;
            background-color: var(--bg-card);
            border: 1px solid rgba(161, 10, 255, 0.2);
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .service-tab.active, .service-tab:hover {
            background-color: var(--primary-light);
            border-color: var(--primary);
            box-shadow: 0 0 20px var(--primary-glow);
        }

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

        .pricing-card {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 32px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(161, 10, 255, 0.2);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            width: 300px;
            flex-shrink: 0;
        }

        .pricing-card:hover {
            border-color: var(--primary);
            box-shadow: 0 0 30px var(--primary-glow);
        }

        .pricing-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .pricing-price {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .pricing-features {
            text-align: left;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .pricing-feature i {
            margin-right: 8px;
            color: var(--primary);
            font-size: 16px;
        }

        .pricing-feature-label {
            font-weight: 600;
            margin-right: 8px;
            color: var(--text);
        }

        footer {
            padding: 80px 0 30px;
            border-top: 2px solid #ffffff2d;
            background: #000000;
            color: white;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .footer-left {
            flex: 1;
        }

        .footer-right {
            display: flex;
            gap: 60px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }

        .footer-logo img {
            width: 45px;
            height: 45px;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-links-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.7s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(161, 10, 255, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(161, 10, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(161, 10, 255, 0); }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }
            
            .hero-description {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 36px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                padding: 0 16px;
            }

            .pricing-grid {
                justify-content: center;
                padding: 0 16px;
            }

            .service-tabs {
                flex-direction: column;
                align-items: stretch;
                padding: 0 16px;
                gap: 8px;
            }

            .service-tab {
                text-align: center;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 40px;
            }

            .footer-right {
                gap: 40px;
            }
        }