        /* --- PURCHASE NOTIFICATION STYLES --- */
        .purchase-notification {
            position: fixed;
            left: 24px;
            right: auto;
            bottom: -160px;
            width: 320px;
            max-width: 90vw;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(12, 14, 24, 0.95);
            backdrop-filter: blur(14px);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
            opacity: 0;
            transform: translateY(20px);
            transition:
                bottom 0.6s cubic-bezier(.22,1,.36,1),
                opacity 0.4s ease,
                transform 0.4s ease;
            z-index: 2147483647;
            color: #fff;
            font-family: system-ui, sans-serif;
            pointer-events: none;
        }
        .purchase-notification.show {
            bottom: 24px;
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 600px) {
            .purchase-notification {
                left: 8px;
                right: 8px;
                width: auto;
                max-width: 98vw;
                bottom: -160px;
                border-radius: 12px;
                padding: 12px 10px;
            }
            .purchase-notification.show {
                bottom: 12px;
            }
        }
        .modal-card {
            width: 400px;
            background: linear-gradient(135deg,rgba(20,24,48,0.92) 60%,rgba(10,12,24,0.98) 100%);
            border-radius: 26px;
            padding: 38px 32px 32px 32px;
            position: relative;
            box-shadow: 0 0 60px 0 #00b4ff44, 0 0 120px 0 #ff003355, 0 30px 80px 0 rgba(0,0,0,.8);
            border: 2px solid rgba(0,174,255,0.13);
            backdrop-filter: blur(22px) saturate(1.2);
            animation: fadeInModal .5s cubic-bezier(.22,1,.36,1);
            overflow: visible;
        }


        .progress {
            height: 9px;
            background: linear-gradient(90deg,rgba(0,174,255,0.10),rgba(255,0,51,0.10));
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 28px;
            box-shadow: 0 0 16px #00b4ff33, 0 0 32px #ff003322;
            position: relative;
        }
        #progressBar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg,#00b4ff 0%,#ff0033 100%);
            transition: width .5s cubic-bezier(.22,1,.36,1);
            border-radius: 16px;
            box-shadow: 0 0 16px #00b4ff99, 0 0 32px #ff003399;
            position: absolute;
            left: 0; top: 0;
        }
        .step { display: none; animation: fade .3s cubic-bezier(.22,1,.36,1); }
        .step.active { display: block; }
        .step h3 {
            margin-bottom: 10px;
            font-size: 1.5em;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.01em;
            text-shadow: 0 0 8px #00b4ff, 0 0 16px #ff0033;
        }
        .step p {
            color: #b4b9cc;
            font-size: 1.08em;
            margin-bottom: 22px;
            text-shadow: 0 0 4px #000a, 0 0 8px #00b4ff22;
        }
        .opt {
            width: 100%;
            margin-top: 14px;
            padding: 16px 0;
            border-radius: 15px;
            border: 1.5px solid rgba(0,174,255,.18);
            background: linear-gradient(90deg,rgba(0,174,255,.07),rgba(255,0,51,.07));
            color: #fff;
            cursor: pointer;
            transition: background .22s, border .22s, box-shadow .22s, filter .22s;
            font-size: 1.12em;
            font-weight: 700;
            letter-spacing: 0.01em;
            box-shadow: 0 2px 12px 0 #00b4ff11, 0 0 0 0 #ff003311;
            filter: drop-shadow(0 0 6px #00b4ff22);
        }
        .opt:hover, .opt:focus {
            background: linear-gradient(90deg,rgba(0,174,255,.18),rgba(255,0,51,.18));
            border-color: #ff0033;
            outline: none;
            box-shadow: 0 0 24px #00b4ff55, 0 0 32px #ff003355;
            filter: drop-shadow(0 0 12px #00b4ff55);
        }
        .primary {
            margin-top: 28px;
            padding: 17px 0;
            width: 100%;
            border-radius: 15px;
            border: none;
            background: linear-gradient(135deg,#ff0033 0%,#00b4ff 100%);
            color: white;
            font-weight: 800;
            font-size: 1.13em;
            box-shadow: 0 2px 24px 0 #00b4ff33, 0 0 32px #ff003355;
            letter-spacing: 0.01em;
            transition: background .22s, box-shadow .22s;
            text-shadow: 0 0 8px #fff2, 0 0 16px #00b4ff44;
        }
        .primary:hover, .primary:focus {
            background: linear-gradient(135deg,#00b4ff 0%,#ff0033 100%);
            outline: none;
            box-shadow: 0 0 32px #00b4ff99, 0 0 48px #ff003399;
        }
        .back {
            margin-top: 18px;
            background: none;
            border: none;
            color: #8ab4ff;
            cursor: pointer;
            font-size: 1em;
            font-weight: 600;
            letter-spacing: 0.01em;
            transition: color .18s, text-shadow .18s;
            text-shadow: 0 0 6px #00b4ff44;
        }
        .back:hover { color: #fff; text-shadow: 0 0 12px #00b4ff; }
        .cpu-group { display: none; }
        #log {
            font-size: 15px;
            text-align: left;
            margin-top: 16px;
            color: #00b4ff;
            min-height: 80px;
            text-shadow: 0 0 8px #00b4ff44;
        }
        @media (max-width: 600px) {
            .modal-card {
                width: 98vw;
                min-width: 0;
                padding: 18px 4vw 18px 4vw;
            }
        }
        /* Futuristic accent ring for modal */
        .modal-card::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 30px;
            pointer-events: none;
            z-index: 2;
            background: conic-gradient(from 120deg, #00b4ff 0%, #ff0033 40%, #00b4ff 80%, #ff0033 100%);
            opacity: 0.18;
            filter: blur(8px) brightness(1.2);
            animation: accentSpin 4s linear infinite;
        }
        @keyframes accentSpin {
            0% { filter: blur(8px) brightness(1.2) hue-rotate(0deg); }
            100% { filter: blur(8px) brightness(1.2) hue-rotate(360deg); }
        }

        /* Holographic scan bar */
        .modal-card::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            width: 70%;
            height: 12px;
            background: linear-gradient(90deg,transparent,#00b4ff88 40%,#fff 50%,#ff003388 60%,transparent);
            border-radius: 50%;
            transform: translateX(-50%);
            opacity: 0.22;
            filter: blur(2px);
            animation: scanBar 2.2s linear infinite;
            z-index: 3;
        }
        @keyframes scanBar {
            0% { top: 0; opacity: 0.22; }
            40% { opacity: 0.33; }
            60% { opacity: 0.33; }
            100% { top: 96%; opacity: 0.12; }
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.75);
            backdrop-filter: blur(12px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: .3s;
            z-index: 10001;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-card {
            width: 360px;
            background: linear-gradient(145deg,#0e1224,#050508);
            border-radius: 18px;
            padding: 26px;
            position: relative;
            box-shadow: 0 25px 80px rgba(0,0,0,.6);
        }
        .modal-close {
            position: absolute;
            right: 14px;
            top: 14px;
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }

        @keyframes fade {
            from { opacity:0; transform: translateY(10px); }
            to { opacity:1; transform: translateY(0); }
        }
        :root {
            --bg-dark: #030306;
            --bg-card: #0a0a12;
            --bg-card-hover: #0f0f1a;
            --primary: #ff0000;
            --primary-glow: rgba(255, 0, 0, 0.4);
            --primary-dim: rgba(0, 174, 255, 0.1);
            --secondary: #63f17b;
            --accent: #eebe22;
            --text: #ffffff;
            --text-dim: rgba(255, 255, 255, 0.6);
            --text-muted: rgba(255, 255, 255, 0.4);
            --border: rgba(255, 255, 255, 0.06);
            --success: #ffffff;
            --gradient-1: linear-gradient(135deg, #ffeade 0%, #ffd20a 100%);
            --gradient-2: linear-gradient(135deg, #f17863 0%, #f3c3d2 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', -apple-system, sans-serif;
            background: var(--bg-dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

/* ============ SPOTLIGHT GLOWS ============ */
        .spotlight {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(120px);
            opacity: 0.5;
        }
        
        .spotlight-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.35) 0%, transparent 70%);
            top: -100px;
            left: -150px;
        }
        
        .spotlight-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
            top: 100px;
            
            }
        
        .spotlight-3 {
            width: 400px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.25) 0%, transparent 70%);
            top: 200px;
            left: 100px;
            }
        
        .spotlight-4 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
                top: -200px;
                left: 200px;
            }
        
        .spotlight-5 {
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
            top: -150px;
            left: -100px;
        }

        /* ============ CUSTOM CURSOR ============ */
        .cursor-glow {
            position: fixed;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(0, 174, 255, 0.12) 0%, transparent 60%);
            filter: blur(20px);
            transition: opacity 0.3s;
        }

        .cursor-glow.hover {
            background: radial-gradient(circle, rgba(0, 174, 255, 0.18) 0%, transparent 60%);
        }

        /* ============ CANVAS BACKGROUND ============ */
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

/* ================= PURCHASE NOTIFICATION ================= */


/* Icon */
.notif-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff0000, #ff4444);
  color: white;
  font-weight: 700;
  font-size: 16px;

  box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

/* Text */
.notif-content {
  flex: 1;
  line-height: 1.35;
}

.notif-title {
  font-size: 11px;
  color: #9aa0b5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notif-name {
  font-weight: 600;
}

.notif-product {
  font-size: 13px;
  font-weight: 500;
  color: #ff0000;
}

.notif-location {
  font-size: 12px;
  color: #b4b9cc;
}

/* Time */
.notif-time {
  font-size: 11px;
  color: #9aa0b5;
  white-space: nowrap;
}

/* Mobile */

@media (max-width: 900px) {
    /* Removed duplicate .purchase-notification and .purchase-notification.show to prevent conflicts */
}



        /* ============ PRODUCTS SECTION ============ */
        .section {
            padding: 120px 60px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 16px;
            background: var(--primary-dim);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 600px;
            margin: 0 auto;
        }

        .products-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-category {
            margin-bottom: 60px;
        }

        .product-category:last-child {
            margin-bottom: 0;
        }

        .product-category-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .product-category-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 174, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-category-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
        }

        .product-category-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
        }

        .product-category-desc {
            font-size: 14px;
            color: var(--text-dim);
            margin-top: 4px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            justify-content: center;
            max-width: 1100px;
            margin: 0 auto 24px;
        }

        .products-grid-2 {
            grid-template-columns: repeat(2, 1fr);
            max-width: 900px;
        }

        .products-grid-3 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1100px;
        }

        .product-card-featured {
            border-color: rgba(0, 174, 255, 0.15);
        }

        @media (max-width: 900px) {
            .products-grid-2,
            .products-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 700px) {
            .products-grid,
            .products-grid-2,
            .products-grid-3 {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }

        .product-card {
            background: linear-gradient(145deg, rgba(15, 15, 22, 0.9), rgba(8, 8, 14, 0.95));
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 174, 255, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 174, 255, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 174, 255, 0.08);
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a15 0%, #050508 100%);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.5s ease;
            padding: 4px;
        }

        .product-card:hover .product-image {
            transform: scale(1.03);
        }




        .product-video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a18 0%, #050508 100%);
            color: var(--text-muted);
            gap: 12px;
        }

        .product-video-placeholder svg {
            width: 48px;
            height: 48px;
            stroke: var(--primary);
            opacity: 0.7;
        }

        .product-video-placeholder span {
            font-size: 13px;
            font-weight: 500;
        }

        .product-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badges {
            position: absolute;
            top: 14px;
            left: 14px;
            right: 14px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            z-index: 2;
        }

        .product-badge {
            padding: 7px 14px;
            background: rgba(239, 68, 68, 0.9);
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(8px);
        }

        .product-badge.sale {
            background: rgba(239, 68, 68, 0.95);
        }

        .product-badge.popular {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.95));
        }

        .product-badge.best-value {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(109, 40, 217, 0.95));
        }

        .product-badge.new {
            background: rgba(34, 197, 94, 0.9);
        }

        .product-content {
            padding: 20px 24px 24px;
            display: flex;
            flex-direction: column;
        }

        .product-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .product-subtitle {
            font-size: 12px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-desc {
            font-size: 14px;
            color: var(--text-dim);
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }

        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .product-pricing {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .product-price-original {
            font-size: 14px;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .product-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--success);
        }

        .product-price span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .product-btn {
            padding: 14px 24px;
            background: var(--primary);
            border: none;
            border-radius: 10px;
            color: white;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .product-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px var(--primary-glow);
        }

        /* ============ FEATURES SECTION ============ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 174, 255, 0.2);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-dim);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--primary);
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============ TESTIMONIALS MARQUEE ============ */
        .testimonials-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow: hidden;
            padding: 20px 0;
            position: relative;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .testimonials-row {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        .testimonials-row.scroll-left {
            animation: scrollLeft 60s linear infinite;
        }

        .testimonials-row.scroll-right {
            animation: scrollRight 60s linear infinite;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .testimonials-row:hover {
            animation-play-state: paused;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            min-width: 380px;
            max-width: 380px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            border-color: rgba(0, 174, 255, 0.3);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-stars svg {
            width: 16px;
            height: 16px;
            fill: #fbbf24;
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--text-dim);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 14px;
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ============ FAQ SECTION ============ */
        .faq-section {
            padding: 100px 60px;
            position: relative;
            z-index: 1;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .faq-card {
            background: rgba(12, 12, 18, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s;
        }

        .faq-card:hover {
            border-color: rgba(0, 174, 255, 0.2);
            transform: translateY(-4px);
        }

        .faq-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .faq-card p {
            font-size: 13px;
            color: var(--text-dim);
            line-height: 1.7;
        }

        .faq-card a {
            color: var(--primary);
            text-decoration: none;
        }

        .faq-card a:hover {
            text-decoration: underline;
        }

        @media (max-width: 1200px) {
            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .faq-section {
                padding: 60px 24px;
            }
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            padding: 120px 60px;
            position: relative;
            z-index: 1;
        }

        .cta-box {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, var(--primary-dim) 0%, transparent 50%);
            opacity: 0.5;
        }

        .cta-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
            position: relative;
        }

        .cta-desc {
            font-size: 18px;
            color: var(--text-dim);
            margin-bottom: 40px;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            position: relative;
        }

/* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            background: transparent;
            transition: justify-content 0s, padding 0.6s ease;
        }

        .navbar.scrolled .nav-inner {
            background: rgba(8, 8, 14, 0.144);
            backdrop-filter: blur(24px);
            border-color: rgba(255, 255, 255, 0.1);
            padding: 12px 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .navbar.scrolled .nav-logo img {
            height: 26px;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            gap: 32px;
            padding: 12px 24px;
            border-radius: 100px;
            background: transparent;
            border: 1px solid transparent;
            transition: background 0.6s ease, border-color 0.6s ease, padding 0.6s ease, box-shadow 0.6s ease;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo img {
            height: 36px;
            width: auto;
            object-fit: contain;
            transition: height 0.6s ease;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: color 0.2s;
        }

        .nav-links a svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-free {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid rgba(0, 174, 255, 0.4);
            border-radius: 8px;
            color: var(--primary);
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .nav-free:hover {
            background: rgba(0, 174, 255, 0.1);
            border-color: var(--primary);
        }

        .nav-cta {
            padding: 10px 22px;
            background: var(--primary);
            border: none;
            border-radius: 100px;
            color: white;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px var(--primary-glow);
        }




 /* ============ HERO SECTION ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 60px 100px;
            position: relative;
            z-index: 1;
        }

        .hero-wrapper {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1400px;
            width: 100%;
        }

        .hero-content {
            text-align: left;
            flex: 1;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero-title {
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .hero-title .gradient {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 520px;
            margin: 0 0 36px 0;
            animation: fadeInUp 0.8s ease 0.2s both;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .btn-primary {
            padding: 18px 40px;
            background: var(--primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px var(--primary-glow);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 48px;
            margin-bottom: 0px;
            animation: fadeInUp 0.8s ease 0.4s both;
            font-family: 'Bebas Neue', 'Space Grotesk', -apple-system, sans-serif !important;
        }

        .stat {
            text-align: left;
            margin-top: 0px;
        }

        .stat-value {
            font-size: 38px;
            font-weight: 800;
            color: var(--text);
            font-family: 'Bebas Neue', 'Space Grotesk', -apple-system, sans-serif !important;
            letter-spacing: 0.01em;
        }

        .stat-value span {
            color: var(--primary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 4px;
            font-family: 'Bebas Neue', 'Space Grotesk', -apple-system, sans-serif !important;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ PRODUCTS SECTION ============ */
        .section {
            padding: 120px 60px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 16px;
            background: var(--primary-dim);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 600px;
            margin: 0 auto;
        }

        .products-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-category {
            margin-bottom: 60px;
        }

        .product-category:last-child {
            margin-bottom: 0;
        }

        .product-category-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .product-category-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 174, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-category-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
        }

        .product-category-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
        }

        .product-category-desc {
            font-size: 14px;
            color: var(--text-dim);
            margin-top: 4px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            justify-content: center;
            max-width: 1100px;
            margin: 0 auto 24px;
        }

        .products-grid-2 {
            grid-template-columns: repeat(2, 1fr);
            max-width: 900px;
        }

        .products-grid-3 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1100px;
        }

        .product-card-featured {
            border-color: rgba(0, 174, 255, 0.15);
        }

        @media (max-width: 900px) {
            .products-grid-2,
            .products-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 700px) {
            .products-grid,
            .products-grid-2,
            .products-grid-3 {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }

        .product-card {
            background: linear-gradient(145deg, rgba(15, 15, 22, 0.9), rgba(8, 8, 14, 0.95));
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 174, 255, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 174, 255, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 174, 255, 0.08);
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a15 0%, #050508 100%);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.5s ease;
            padding: 4px;
        }

        .product-card:hover .product-image {
            transform: scale(1.03);
        }

        .preview-btn {
            position: absolute;
            bottom: 12px;
            right: 12px;
            padding: 8px 14px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 3;
        }

        .product-card:hover .preview-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .preview-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .preview-btn svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
        }

        .product-video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a18 0%, #050508 100%);
            color: var(--text-muted);
            gap: 12px;
        }

        .product-video-placeholder svg {
            width: 48px;
            height: 48px;
            stroke: var(--primary);
            opacity: 0.7;
        }

        .product-video-placeholder span {
            font-size: 13px;
            font-weight: 500;
        }

        .product-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badges {
            position: absolute;
            top: 14px;
            left: 14px;
            right: 14px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            z-index: 2;
        }

        .product-badge {
            padding: 7px 14px;
            background: rgba(239, 68, 68, 0.9);
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(8px);
        }

        .product-badge.sale {
            background: rgba(239, 68, 68, 0.95);
        }

        .product-badge.popular {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.95));
        }

        .product-badge.best-value {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(109, 40, 217, 0.95));
        }

        .product-badge.new {
            background: rgba(34, 197, 94, 0.9);
        }

        .product-content {
            padding: 20px 24px 24px;
            display: flex;
            flex-direction: column;
        }

        .product-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .product-subtitle {
            font-size: 12px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-desc {
            font-size: 14px;
            color: var(--text-dim);
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }

        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .product-pricing {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .product-price-original {
            font-size: 14px;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .product-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--success);
        }

        .product-price span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .product-btn {
            padding: 14px 24px;
            background: var(--primary);
            border: none;
            border-radius: 10px;
            color: white;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .product-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px var(--primary-glow);
        }

.robot-3d{
    position: absolute;
    top: 0;
    right: 0%;
    max-width: 100%;
    width: 70%;
}

/* Responsive adjustments for robot-3d */
@media (max-width: 1200px) {
    .robot-3d {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .robot-3d {
        width: 100%;
        right: 0%;
    }
}

@media (max-width: 600px) {
    .robot-3d {
        display: none;
    }
}


/* SERVICES TAB */

.title1 {
    padding: 100px 0 0px 0;
    font-size: 15px;
    font-weight: 300;
    justify-content: center;
    text-align: center;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.title2 {
    padding: 0px;
  font-size: 80px;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.description {
    font-size: 18px;
    font-weight: 200;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: rgb(180, 180, 180);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 0 8rem 0;
    height: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    min-height: 700px;
    width: 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    background: rgba(109, 109, 109, 0.075);
    border: 6px solid rgba(218, 215, 215, 0);
    backdrop-filter: blur(5px);
    border-radius: 25px;
}
.card_title {
    height: 30px;
    font-weight: 800;
    font-size: 26px;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing {
    height: 45px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing .small {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff9a;
}

.features {
    margin: 90px 0;
    list-style-position: inside;
}

.features li{
    list-style: none;
    padding-bottom: 15px;
    font-weight: 200;
}

a.cta_btn {
    margin-top: auto;
    width: 100%;
    display: inline-block;
    font-weight: 700;
    justify-content:flex-start;
    text-align: center;
    background: rgb(255, 0, 0);
    border-radius: 29px;
    padding: 20px 0;
    color: rgb(0, 0, 0);
    text-decoration: none;
    letter-spacing: normal;
    transition: background .3s ease;
}

a.cta_btn:hover {
    background-color: #ffffff;
}



/* ============ TESTIMONIALS MARQUEE ============ */
        .testimonials-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow: hidden;
            padding: 20px 0;
            position: relative;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .testimonials-row {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        .testimonials-row.scroll-left {
            animation: scrollLeft 60s linear infinite;
        }

        .testimonials-row.scroll-right {
            animation: scrollRight 60s linear infinite;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .testimonials-row:hover {
            animation-play-state: paused;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            min-width: 380px;
            max-width: 380px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            border-color: rgba(0, 174, 255, 0.3);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-stars svg {
            width: 16px;
            height: 16px;
            fill: #fbbf24;
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--text-dim);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 14px;
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ============ FAQ SECTION ============ */
        .faq-section {
            padding: 100px 60px;
            position: relative;
            z-index: 1;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .faq-card {
            background: rgba(12, 12, 18, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s;
        }

        .faq-card:hover {
            border-color: rgba(0, 174, 255, 0.2);
            transform: translateY(-4px);
        }

        .faq-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .faq-card p {
            font-size: 13px;
            color: var(--text-dim);
            line-height: 1.7;
        }

        .faq-card a {
            color: var(--primary);
            text-decoration: none;
        }

        .faq-card a:hover {
            text-decoration: underline;
        }

        @media (max-width: 1200px) {
            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .faq-section {
                padding: 60px 24px;
            }
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            padding: 120px 60px;
            position: relative;
            z-index: 1;
        }

        .cta-box {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, var(--primary-dim) 0%, transparent 50%);
            opacity: 0.5;
        }

        .cta-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
            position: relative;
        }

        .cta-desc {
            font-size: 18px;
            color: var(--text-dim);
            margin-bottom: 40px;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            position: relative;
        }

            /* ============ FOOTER ============ */
            .footer {
                padding: 80px 60px 40px;
                border-top: 1px solid var(--border);
                position: relative;
                z-index: 1;
            }

            .footer-content {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 60px;
                max-width: 1400px;
                margin: 0 auto;
            }

            .footer-brand {
                max-width: 300px;
            }

            .footer-logo {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 20px;
            }

            .footer-logo img {
                height: 32px;
                width: auto;
                object-fit: contain;
            }

            .footer-desc {
                font-size: 14px;
                color: var(--text-muted);
                line-height: 1.7;
                margin-bottom: 24px;
            }

            .footer-social {
                display: flex;
                gap: 12px;
            }

            .social-link {
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s;
            }

            .social-link:hover {
                background: var(--primary);
            }

            .social-link svg {
                width: 18px;
                height: 18px;
                fill: var(--text-dim);
                transition: fill 0.3s;
            }

            .social-link:hover svg {
                fill: white;
            }

            .footer-column h4 {
                font-size: 14px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: var(--text);
                margin-bottom: 24px;
            }

            .footer-column a {
                display: block;
                font-size: 14px;
                color: var(--text-muted);
                text-decoration: none;
                padding: 8px 0;
                transition: color 0.2s;
            }

            .footer-column a:hover {
                color: var(--primary);
            }

            .footer-bottom {
                max-width: 1400px;
                margin: 60px auto 0;
                padding-top: 40px;
                border-top: 1px solid var(--border);
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .footer-copyright {
                font-size: 13px;
                color: var(--text-muted);
            }

            .footer-legal {
                display: flex;
                gap: 24px;
            }

            .footer-legal a {
                font-size: 13px;
                color: var(--text-muted);
                text-decoration: none;
                transition: color 0.2s;
            }

            .footer-legal a:hover {
                color: var(--primary);
            }

            /* ============ RESPONSIVE ============ */
            @media (max-width: 1200px) {
                .features-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .footer-content {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 1100px) {
                .hero-wrapper {
                    flex-direction: column;
                    text-align: center;
                    gap: 40px;
                }
                .hero-content {
                    text-align: center;
                }
                .hero-subtitle {
                    margin: 0 auto 36px;
                }
                .hero-buttons {
                    justify-content: center;
                }
                .hero-stats {
                    justify-content: center;
                }
                .stat {
                    text-align: center;
                }
                .hero-logo img {
                    width: 220px;
                }
                .hero-preview video {
                    width: 380px;
                    height: 260px;
                }
                .hero-preview-title {
                    font-size: 28px;
                }
            }

            @media (max-width: 900px) {
                .navbar {
                    padding: 16px 24px;
                }
                .navbar.scrolled {
                    padding: 12px 24px;
                }
                .nav-links {
                    display: none;
                }
                .hero {
                    padding: 120px 24px 80px;
                }
                .hero-stats {
                    gap: 30px;
                    flex-wrap: wrap;
                }
                .section {
                    padding: 80px 24px;
                }
                .testimonials-grid {
                    grid-template-columns: 1fr;
                }
                .cta-box {
                    padding: 48px 24px;
                }
                .footer {
                    padding: 60px 24px 30px;
                }
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .footer-bottom {
                    flex-direction: column;
                    gap: 20px;
                    text-align: center;
                }
                .purchase-notification {
                    right: 12px;
                    left: 12px;
                    bottom: 12px;
                    max-width: none;
                }
            }

            @media (max-width: 600px) {
                .hero-buttons {
                    flex-direction: column;
                }
                .features-grid {
                    grid-template-columns: 1fr;
                }
                .stat-value {
                    font-size: 36px;
                }
                .hero-logo img {
                    width: 240px;
                }
                .cursor-glow {
                    display: none;
                }
                body {
                    cursor: auto;
                }
            }


/* PC Analysis Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(12, 14, 24, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 10% auto;
    padding: 20px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    color: #fff;
    font-family: system-ui, sans-serif;
}

/* Additional PC Modal Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #e74c3c;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
}

.analysis-container {
    text-align: center;
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    width: 0%;
    transition: width 0.3s ease-out;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.recommendation-container {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    display: none;
}

.recommendation-container h3 {
    margin: 0 0 10px 0;
    color: #e74c3c;
}

.recommendation-container p {
    margin: 10px 0;
    color: #fff;
}

.analysis-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.analysis-details code {
    color: #e74c3c;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 3px;
}

/* New PC Analysis Modal Styles */
.pc-analysis-modal {
    max-width: 900px;
    width: 90%;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    color: #e74c3c;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.modal-header p {
    color: #ccc;
    font-size: 1.1em;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.component-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.component-card:hover {
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.component-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.component-icon {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #e74c3c;
}

.component-header h3 {
    color: #fff;
    font-size: 1.2em;
    margin: 0;
}

.component-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.analysis-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-analyze {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-analyze svg {
    width: 20px;
    height: 20px;
}

.analysis-progress {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-header h3 {
    color: #e74c3c;
    margin: 0;
    font-size: 1.3em;
}

.progress-percentage {
    color: #e74c3c;
    font-size: 1.2em;
    font-weight: bold;
}

.analysis-status {
    color: #ccc;
    margin-top: 15px;
    font-size: 1.1em;
}

.recommendation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.recommendation-icon {
    width: 50px;
    height: 50px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #e74c3c;
}

.recommendation-header h3 {
    color: #e74c3c;
    font-size: 1.5em;
    margin: 0;
}

.system-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.summary-label {
    color: #ccc;
    font-size: 0.9em;
    font-weight: 500;
}

.summary-value {
    font-size: 1.2em;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
}

.summary-value.level-high {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.summary-value.level-mid {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.summary-value.level-low {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.service-recommendation {
    margin-top: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header h4 {
    color: #e74c3c;
    font-size: 1.4em;
    margin: 0;
}

.service-price {
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
}

.service-desc {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Enhanced Analysis Results Styles */
.analysis-results {
    animation: fadeInUp 0.5s ease-out;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.results-icon {
    width: 60px;
    height: 60px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
}

.results-header h3 {
    color: #e74c3c;
    font-size: 1.8em;
    margin: 0;
    flex: 1;
    text-align: center;
}

.overall-score {
    display: flex;
    align-items: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#e74c3c 0deg, #e74c3c calc(var(--score) * 3.6deg), rgba(231, 76, 60, 0.2) calc(var(--score) * 3.6deg));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(3, 3, 6, 0.9);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.score-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #e74c3c;
    position: relative;
    z-index: 1;
}

.score-label {
    font-size: 0.7em;
    color: #ccc;
    position: relative;
    z-index: 1;
    margin-top: 2px;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }

.metric-card:hover {
    border-color: rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.metric-icon {
    font-size: 1.5em;
}

.metric-name {
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.metric-score {
    font-size: 2em;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 4px;
    transition: width 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.metric-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: metricShimmer 2s infinite 1.5s;
}

.metric-level {
    font-size: 0.9em;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
}

.metric-level.level-high {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.metric-level.level-mid {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.metric-level.level-low {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.compatibility-warnings {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(230, 126, 34, 0.1));
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.compatibility-warnings h4 {
    color: #f1c40f;
    margin: 0 0 15px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warnings-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.warning-item {
    color: #f39c12;
    font-size: 0.95em;
    padding: 8px 12px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: 6px;
    border-left: 3px solid #f1c40f;
}

.potential-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.potential-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.potential-label {
    display: block;
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.potential-value {
    display: block;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1em;
}

.service-recommendation {
    margin-top: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header h4 {
    color: #e74c3c;
    font-size: 1.6em;
    margin: 0;
}

.service-price {
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
}

.service-desc {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.service-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.95em;
}

.benefit-icon {
    color: #2ecc71;
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.service-actions .btn-primary,
.service-actions .btn-secondary {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    font-size: 1em;
}