      @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

        :root {
            --primary: #6c3cb4;
            --primary-light: #9b6dff;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #ffffff;
            --bg-gray: #f1f5f9;
            --bg-dark-gray: #1e1e1e;
            --footer-bg: #2a2a2a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-light);
        }

        /* 
            DÜZENLEME ALANI: Kış İndirimi Banner
            - Banner rengini değiştirin
            - Metni güncelleyin
            - İsterseniz tamamen kaldırabilirsiniz
        */
        .winter-banner {
            background: #166534;
            padding: 12px 0;
            position: relative;
            overflow: hidden;
            z-index: 1000;
        }

        .winter-content {
            color: white;
            text-align: center;
            font-weight: 500;
            font-size: 15px;
            z-index: 2;
            position: relative;
        }

        .winter-badge {
            background: rgba(255,255,255,0.2);
            padding: 4px 12px;
            border-radius: 4px;
            margin: 0 8px;
        }

        .snowflake {
            position: absolute;
            background: white;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            pointer-events: none;
            animation: snowfall linear forwards;
        }

        @keyframes snowfall {
            to {
                transform: translateY(60px);
                opacity: 0;
            }
        }

        /* 
            DÜZENLEME ALANI: Navbar
            - Logo boyutunu ayarlayın
            - Menü öğelerini güncelleyin
            - Renkleri değiştirin
        */
        .navbar {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .navbar-brand img {
            height: 32px;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-title {
            color: var(--text-dark);
            font-weight: 700;
            font-size: 18px;
            line-height: 1.2;
        }

        .brand-subtitle {
            color: var(--text-light);
            font-size: 14px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-menu-item {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-menu-item:hover {
            background: rgba(108, 60, 180, 0.1);
            color: var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .nav-link:hover {
            background: rgba(108, 60, 180, 0.1);
            color: var(--primary);
        }

        .nav-link.primary {
            background: var(--primary);
            color: white;
        }

        .nav-link.primary:hover {
            background: var(--primary-light);
            color: white;
        }

        /* 
            DÜZENLEME ALANI: Hero Section
            - Başlık ve açıklamayı güncelleyin
            - Arka plan rengini değiştirin
            - Particles efektini özelleştirin
            - Karakter görsellerini değiştirin
        */
        .hero {
            min-height: 80vh;
            background: white;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            overflow: hidden;
        }

        #particles-js,
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            z-index: 2;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 32px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btn {
            background: var(--primary);
            color: white;
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .hero-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            color: white;
        }

        .hero-character-left,
        .hero-character-right {
            position: absolute;
            bottom: 0;
            height: 35vh;
            opacity: 0.9;
            z-index: 1;
        }

        .hero-character-left {
            left: 10%;
        }

        .hero-character-right {
            right: 10%;
            transform: scaleX(-1);
        }

        /* 
            DÜZENLEME ALANI: Öne Çıkan Ürünler
            - Kart tasarımını özelleştirin
            - Ürün bilgilerini güncelleyin
            - Görselleri değiştirin (aha.png)
            - Fiyatları ve indirimleri güncelleyin
        */
        .featured-builds {
            padding: 60px 0;
            background: var(--bg-dark-gray);
        }

        .featured-title {
            color: white;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .featured-card {
            background: #2a2a2a;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .featured-card:hover {
            transform: translateY(-5px);
        }

        .featured-image {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .featured-content {
            padding: 24px;
        }

        .featured-card-title {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .featured-description {
            color: #94a3b8;
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .featured-price {
            color: white;
            font-size: 28px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .featured-badge {
            background: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            position: absolute;
            top: 16px;
            left: 16px;
        }

        .featured-info {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .featured-info:hover {
            background: rgba(255,255,255,0.2);
        }

        .old-price {
            color: #94a3b8;
            font-size: 20px;
            text-decoration: line-through;
            font-weight: normal;
        }

        .sale-badge {
            background: #fee2e2;
            color: #dc2626;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        /* 
            DÜZENLEME ALANI: Kategoriler
            - Kategori isimlerini güncelleyin
            - Görselleri değiştirin (aha.png)
            - Açıklamaları güncelleyin
        */
        .categories {
            padding: 60px 0;
            background: var(--bg-light);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .category-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 1;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: block;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(108, 60, 180, 0.3);
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .category-card:hover img {
            transform: scale(1.05);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
        }

        .category-overlay h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .category-overlay p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* 
            DÜZENLEME ALANI: En Çok Satanlar
            - Ürün bilgilerini güncelleyin
            - Görselleri değiştirin (aha.png)
            - Fiyatları ve indirimleri güncelleyin
        */
        .top-sellers {
            padding: 60px 0;
            background: var(--bg-gray);
        }

        .view-all {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .view-all:hover {
            color: var(--primary-light);
            gap: 12px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .product-content {
            padding: 24px;
        }

        .product-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .product-description {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .product-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 16px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-price {
            color: var(--primary);
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .product-btn {
            background: var(--primary);
            color: white;
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .product-btn:hover {
            background: var(--primary-light);
            color: white;
        }

        /* 
            DÜZENLEME ALANI: Trust Section
            - Yıldız sayısını ve puanı güncelleyin
            - Değerlendirme sayısını güncelleyin
            - Metni güncelleyin
        */
        .trust-section {
            position: relative;
            padding: 80px 0;
            background: #dcfce7;
            overflow: hidden;
        }

        #trust-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .trust-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .trust-rating {
            font-size: 36px;
            font-weight: 800;
            color: #15803d;
            margin-bottom: 20px;
        }

        .trust-stars {
            color: #16a34a;
            font-size: 28px;
            margin-bottom: 24px;
        }

        .trust-text {
            font-size: 20px;
            color: #374151;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .trust-btn {
            background: #16a34a;
            color: white;
            padding: 14px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .trust-btn:hover {
            background: #15803d;
            transform: translateY(-2px);
        }

        /* 
            DÜZENLEME ALANI: Stats Section
            - Sayıları güncelleyin
            - İkonları değiştirin
            - Başlıkları güncelleyin
        */
        .stats-section {
            padding: 80px 0;
            background: var(--bg-gray);
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 24px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .stat-text {
            color: var(--text-dark);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .stat-hint {
            display: block;
            color: var(--text-light);
            font-size: 13px;
            font-weight: 400;
            margin-top: 4px;
            opacity: 0.8;
        }

        /* 
            DÜZENLEME ALANI: Referanslar
            - Referans logolarını ekleyin (images.png)
            - Grid yapısını özelleştirin
        */
        .references {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .references-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
        }

        .references-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            align-items: center;
        }

        .reference-logo {
            width: 100%;
            height: 70px;
            object-fit: contain;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .references-grid a {
            display: block;
            text-decoration: none;
        }

        .reference-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
            cursor: pointer;
        }

        /* 
            DÜZENLEME ALANI: Footer
            - Logo ve marka bilgilerini güncelleyin
            - Menü öğelerini güncelleyin
            - Sosyal medya linklerini ekleyin
        */
        .footer {
            background: var(--footer-bg);
            color: white;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-brand-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand img {
            height: 40px;
        }

        .footer-brand-text {
            display: flex;
            flex-direction: column;
        }

        .footer-brand-title {
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .footer-brand-subtitle {
            color: #94a3b8;
            font-size: 16px;
        }

        .footer-description {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 16px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a i {
            font-size: 14px;
        }

        /* Düzeltilmiş sosyal medya ikonları */
        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .social-link i {
            font-size: 20px;
            line-height: 1;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: #94a3b8;
            font-size: 16px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        .footer-credit {
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

/* ============================================
   INDEX PAGE SPECIFIC STYLES (Optimized)
   ============================================ */

/* Root Variables */
:root {
    --primary: #00f2fe;
    --primary-rgb: 0, 242, 254;
    --secondary: #4facfe;
    --secondary-rgb: 79, 172, 254;
    --accent: #FF6B6B;
    --accent-rgb: 255, 107, 107;
    --background: #0a0b14;
    --surface: #151725;
    --text: #ffffff;
    --text-secondary: #8a8f98;
    --card-bg: rgba(21, 23, 37, 0.8);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

/* Text Selection */
::selection {
    background: var(--primary);
    color: var(--background);
}

/* Loader */
.loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 20px;
}

.loader-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 2s infinite linear;
}

.loader-cube div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
    border: 2px solid var(--surface);
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 1rem;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: var(--surface);
    margin: 20px auto 0;
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0;
    height: 100%;
    background: var(--gradient);
    animation: progress 2s ease-in-out forwards;
}

/* Animations */
@keyframes rotate {
    0% { transform: rotateX(0) rotateY(0); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 5)); }
}

/* Hover Effects */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Glass Morphism */
.glass {
    background: rgba(var(--surface-rgb), 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
#particles-js,
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    pointer-events: none;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 8rem 10% 5rem;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.1) 0%,
        rgba(var(--secondary-rgb), 0.1) 0%);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right,
        rgba(var(--primary-rgb), 0.1),
        transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    animation: fadeInUp 1s ease;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.hero-btn-primary::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    left: -100px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover::after {
    left: 200%;
}

.hero-btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 1s forwards;
    opacity: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(var(--primary-rgb), 0.2) 0%,
        transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.floating-items img {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

.item1 { top: 20%; left: 10%; animation-delay: 0s; }
.item2 { top: 50%; right: 10%; animation-delay: 1s; }
.item3 { bottom: 20%; left: 20%; animation-delay: 2s; }

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 2px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    white-space: nowrap;
}

/* Features Section */
.features {
    padding: 8rem 10%;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-box:hover::before {
    opacity: 0.1;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 8rem 10%;
    background: var(--background);
    position: relative;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0;
}

.filter-btn span {
    position: relative;
    z-index: 2;
}

.filter-btn.active::before,
.filter-btn:hover::before {
    left: 0;
    opacity: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.preview-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--background);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .preview-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-content {
    padding: 2rem;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--primary);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-now {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.buy-btn {
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-btn::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    left: -100px;
    transition: all 0.3s ease;
}

.buy-btn:hover::after {
    left: 200%;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 10%;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 300px;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(var(--primary-rgb), 0.1);
    animation-play-state: paused;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

/* References Section */
.references {
    padding: 8rem 10%;
    background: var(--background);
    position: relative;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.reference-card {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reference-card:hover::before {
    opacity: 0.1;
}

.reference-card:hover {
    transform: translateY(-10px);
}

.reference-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.reference-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    transition: all 0.3s ease;
}

.reference-card:hover .reference-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

.reference-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.reference-card a:hover .reference-info h3 {
    color: var(--primary);
    transition: color 0.3s ease;
}

.reference-info h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.reference-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reference-content {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

/* Additional Animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 5% 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .references {
        padding: 4rem 5%;
    }
    
    .reference-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .section-header {
        text-align: center;
    }

    .section-subtitle {
        margin: 0 auto;
    }
}
