* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    overflow: -moz-scrollbars-none; 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
html::-webkit-scrollbar {
    display: none; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0c;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;       
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;    
    -ms-overflow-style: none; 
}
body::-webkit-scrollbar {
    display: none;            
}

img, a, button, div {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(100, 115, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(162, 89, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.glass {
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.glass-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(107, 115, 255, 0.3);
    box-shadow: 0 20px 30px -10px rgba(107, 115, 255, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6B73FF 0%, #A259FF 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(107, 115, 255, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(107, 115, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(107, 115, 255, 0.1);
    border-color: #6B73FF;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #c0c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: #6B73FF;
}

.header-right {
    display: flex;
    gap: 15px;
}

.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 30%, #b0b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(107, 115, 255, 0.1);
    border: 1px solid rgba(107, 115, 255, 0.3);
    border-radius: 60px;
    padding: 8px 20px;
    margin-bottom: 30px;
    color: #6B73FF;
    font-weight: 500;
}

.stats-wrapper {
    width: 100%;
    background: transparent; 
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  
    align-items: center;
    gap: 40px 80px;          
    margin: 60px 0;
    padding: 0;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 1 200px;          
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6B73FF;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.stat-label {
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(107, 115, 255, 0.1);
    font-family: 'JetBrains Mono', monospace;
    transition: 0.3s;
}

.feature-card:hover .feature-number {
    color: rgba(107, 115, 255, 0.2);
    transform: scale(1.2);
}

.feature-icon {
    font-size: 2rem;
    color: #6B73FF;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-sub {
    text-align: center;
    color: #aaa;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

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

.product-card {
    padding: 24px;
    text-align: left;
}

.product-image {
    width: 100%;
    height: 160px;
    background: #1a1a24;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(107, 115, 255, 0.3);
    background: linear-gradient(145deg, #121218, #1c1c24);
}

.product-rating {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.product-rating span {
    color: #aaa;
    margin-left: 6px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-description {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B73FF;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.review-card {
    padding: 24px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B73FF, #A259FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

.review-info h4 {
    font-weight: 600;
}

.review-info p {
    color: #aaa;
    font-size: 0.85rem;
}

.review-stars {
    color: #FFD700;
    margin-bottom: 12px;
}

.review-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-section {
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(107, 115, 255, 0.1), rgba(162, 89, 255, 0.1));
    border: 1px solid rgba(107, 115, 255, 0.2);
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .btn {
    margin: 10px;
    display: inline-flex;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.social-links a:hover {
    background: #6B73FF;
    color: black;
    transform: scale(1.1);
}

footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col p {
    color: #aaa;
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #6B73FF;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .header-right {
        gap: 10px;
    }
    .stats-grid {
        gap: 30px;
    }
    .stat-item {
        min-width: 130px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .btn {
        padding: 10px 24px;
    }
    .cta-section {
        padding: 40px 20px;
    }
    .cta-section .btn {
        margin: 5px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 24px;
    }
    .stat-item {
        min-width: 120px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}