/* ========================================
   QUANTUM X DESIGN SYSTEM 2026
   Ultra Premium Dark & Light Theme
   Performance Optimized
   ======================================== */

/* Dark Theme (Default) */
:root {
    --qx-void: #030712;
    --qx-dark: #0f172a;
    --qx-surface: #1e293b;
    --qx-border: rgba(255,255,255,0.06);
    --qx-primary: #f97316;
    --qx-primary-glow: rgba(249,115,22,0.4);
    --qx-accent: #8b5cf6;
    --qx-cyan: #06b6d4;
    --qx-success: #10b981;
    --qx-danger: #ef4444;
    --qx-glass: rgba(255,255,255,0.03);
    --qx-glass-border: rgba(255,255,255,0.08);
    --qx-text: #f8fafc;
    --qx-text-muted: #94a3b8;
    --qx-radius: 1.5rem;
    /* Optimized transitions - shorter and GPU-accelerated */
    --qx-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --qx-transition-fast: all 0.15s ease-out;
    --qx-shadow: 0 25px 50px rgba(0,0,0,0.5);
    --qx-card-bg: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    /* Story icon colors for dark mode */
    --qx-story-icon: #ffffff;
}

/* Light Theme - Tatlı Beyaz/Krem Tonları */
[data-theme="light"],
.light-mode {
    --qx-void: #faf9f7;
    --qx-dark: #ffffff;
    --qx-surface: #f5f3f0;
    --qx-border: rgba(0,0,0,0.08);
    --qx-primary: #ea580c;
    --qx-primary-glow: rgba(234,88,12,0.25);
    --qx-accent: #7c3aed;
    --qx-cyan: #0891b2;
    --qx-success: #059669;
    --qx-danger: #dc2626;
    --qx-glass: rgba(255,255,255,0.85);
    --qx-glass-border: rgba(0,0,0,0.08);
    --qx-text: #1e293b;
    --qx-text-muted: #64748b;
    --qx-shadow: 0 15px 35px rgba(0,0,0,0.06);
    --qx-card-bg: linear-gradient(145deg, #ffffff, #f8f7f5);
    /* Story icon colors for light mode - DARK colors for visibility */
    --qx-story-icon: #475569;
}

/* Auto Light Mode via System Preference */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --qx-void: #faf9f7;
        --qx-dark: #ffffff;
        --qx-surface: #f5f3f0;
        --qx-border: rgba(0,0,0,0.08);
        --qx-primary: #ea580c;
        --qx-primary-glow: rgba(234,88,12,0.25);
        --qx-accent: #7c3aed;
        --qx-cyan: #0891b2;
        --qx-success: #059669;
        --qx-danger: #dc2626;
        --qx-glass: rgba(255,255,255,0.85);
        --qx-glass-border: rgba(0,0,0,0.08);
        --qx-text: #1e293b;
        --qx-text-muted: #64748b;
        --qx-shadow: 0 15px 35px rgba(0,0,0,0.06);
        --qx-card-bg: linear-gradient(145deg, #ffffff, #f8f7f5);
        --qx-story-icon: #475569;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce Motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/*
 * Performance Mode: Disable heavy animations by default
 * This significantly improves page performance on all devices
 */

/* Disable heavy orb blur animations - they're GPU intensive */
.qx-orb {
    animation: none !important;
    opacity: 0.3 !important;
    filter: blur(60px) !important; /* Reduced from 100px */
    will-change: auto; /* Remove will-change to save memory */
}

/* Enable Fire Particle System - Optimized */
.qx-particles {
    display: block !important;
    pointer-events: none;
}

/* Fire Particles - Rising Flames */
.qx-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
}

/* Main flame particles - orange/yellow */
.qx-particle:nth-child(1), .qx-particle:nth-child(2), .qx-particle:nth-child(3), .qx-particle:nth-child(4) {
    width: 8px;
    height: 12px;
    background: linear-gradient(to top, #ff4500, #ff8c00, #ffd700);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 0 10px #ff4500, 0 0 20px #ff8c00;
    animation: fireRise 3s ease-out infinite;
}

/* Secondary ember particles - smaller */
.qx-particle:nth-child(5), .qx-particle:nth-child(6), .qx-particle:nth-child(7) {
    width: 4px;
    height: 6px;
    background: linear-gradient(to top, #ff6b35, #ffd700);
    box-shadow: 0 0 6px #ff6b35;
    animation: emberRise 4s ease-out infinite;
}

/* Spark particles - tiny bright dots */
.qx-particle:nth-child(8), .qx-particle:nth-child(9), .qx-particle:nth-child(10) {
    width: 3px;
    height: 3px;
    background: #fff5e6;
    box-shadow: 0 0 4px #ffd700, 0 0 8px #ff8c00;
    animation: sparkRise 2.5s ease-out infinite;
}

/* Positioning for varied effect */
.qx-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.qx-particle:nth-child(2) { left: 25%; animation-delay: 0.5s; }
.qx-particle:nth-child(3) { left: 75%; animation-delay: 0.3s; }
.qx-particle:nth-child(4) { left: 85%; animation-delay: 0.8s; }
.qx-particle:nth-child(5) { left: 35%; animation-delay: 0.2s; }
.qx-particle:nth-child(6) { left: 55%; animation-delay: 0.6s; }
.qx-particle:nth-child(7) { left: 65%; animation-delay: 1s; }
.qx-particle:nth-child(8) { left: 20%; animation-delay: 0.4s; }
.qx-particle:nth-child(9) { left: 45%; animation-delay: 0.7s; }
.qx-particle:nth-child(10) { left: 80%; animation-delay: 0.1s; }

/* Fire Rise Animation */
@keyframes fireRise {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 0.9;
        transform: translateX(5px) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-8px) scale(0.9);
    }
    80% {
        opacity: 0.4;
        transform: translateX(10px) scale(0.7);
    }
    100% {
        bottom: 60%;
        opacity: 0;
        transform: translateX(-5px) scale(0.3);
    }
}

/* Ember Rise Animation - slower, longer travel */
@keyframes emberRise {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    15% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
        transform: translateX(-15px) rotate(180deg);
    }
    100% {
        bottom: 80%;
        opacity: 0;
        transform: translateX(20px) rotate(360deg);
    }
}

/* Spark Rise Animation - fast, short bursts */
@keyframes sparkRise {
    0% {
        bottom: 0;
        opacity: 0;
        transform: scale(0);
    }
    5% {
        opacity: 1;
        transform: scale(1.5);
    }
    40% {
        opacity: 0.8;
        transform: translateX(10px) scale(1);
    }
    100% {
        bottom: 50%;
        opacity: 0;
        transform: translateX(-15px) scale(0.5);
    }
}

/* Disable infinite gradient rotations */
.qx-story-ring {
    animation: none !important;
    background-size: 100% 100% !important;
}

/* Disable badge pulse animations - not critical */
.qx-product-badge,
.qx-discount-badge {
    animation: none !important;
}

/* Disable feature icon rotation animation */
.qx-feature-icon::after {
    animation: none !important;
}

/* Disable CTA background rotation */
.qx-cta::before {
    animation: none !important;
}

/* Keep transitions smooth but disable infinite loops */
.qx-product-card,
.qx-feature-card,
.qx-testimonial-card,
.qx-trust-item,
.qx-story {
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* Remove will-change from static elements to save memory */
.qx-product-card:not(:hover),
.qx-feature-card:not(:hover) {
    will-change: auto;
}


/* Base Resets */
.qx-section {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism Card */
.qx-glass {
    background: var(--qx-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--qx-glass-border);
    border-radius: var(--qx-radius);
}

/* Glow Effects */
.qx-glow-primary { box-shadow: 0 0 60px var(--qx-primary-glow); }
.qx-glow-accent { box-shadow: 0 0 60px rgba(139,92,246,0.3); }

/* ========================================
   HERO SECTION - QUANTUM PORTAL
   ======================================== */
.qx-hero {
    min-height: 100vh;
    background: var(--qx-void);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.qx-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.qx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.qx-orb-1 {
    width: 50vw; height: 50vw;
    top: -20%; left: -10%;
    background: radial-gradient(circle, var(--qx-primary) 0%, transparent 70%);
}

.qx-orb-2 {
    width: 40vw; height: 40vw;
    bottom: -20%; right: -10%;
    background: radial-gradient(circle, var(--qx-accent) 0%, transparent 70%);
    animation-delay: -10s;
}

.qx-orb-3 {
    width: 30vw; height: 30vw;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--qx-cyan) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.qx-grid-floor {
    position: absolute;
    bottom: 0; left: -50%;
    width: 200%; height: 60%;
    background-image: linear-gradient(var(--qx-border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--qx-border) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(500px) rotateX(65deg);
    mask-image: linear-gradient(to top, black, transparent);
    opacity: 0.4;
}

/* Particle System */
.qx-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.qx-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--qx-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s linear infinite;
}

.qx-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.qx-particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.qx-particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.qx-particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.qx-particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.qx-particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.qx-particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.qx-particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.qx-particle:nth-child(9) { left: 90%; animation-delay: 0.5s; }
.qx-particle:nth-child(10) { left: 15%; animation-delay: 2.5s; }

@keyframes particleFloat {
    0% { bottom: -10%; opacity: 0; transform: translateX(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { bottom: 110%; opacity: 0; transform: translateX(100px); }
}

/* Hero Stats */
.qx-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.qx-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--qx-glass);
    border: 1px solid var(--qx-glass-border);
    border-radius: 1rem;
    min-width: 100px;
}

.qx-stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--qx-primary), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.qx-stat-label {
    font-size: 0.75rem;
    color: var(--qx-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Typing Effect */
.qx-typing {
    position: relative;
    display: inline-block;
}

.qx-typing::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.8s infinite;
    color: #fff;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Enhanced Float Card */
.qx-float-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--qx-glass-border);
    border-radius: 2rem;
    padding: 2rem;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--qx-transition);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.qx-float-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--qx-primary), var(--qx-accent), var(--qx-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s;
}

.qx-float-card:hover::before {
    opacity: 0.6;
}

.qx-float-card:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
    box-shadow: 0 50px 100px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Product Stack in Hero - Premium 3D Design */
.qx-product-stack {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* 3D Product Card */
.qx-stack-item {
    position: absolute;
    width: 220px;
    height: 130px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;

    /* Premium 3D Card Background - Dark Mode */
    background: linear-gradient(145deg,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.04) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* 3D Border Effect */
    border: 1px solid rgba(255,255,255,0.15);
    border-top: 1px solid rgba(255,255,255,0.25);
    border-left: 1px solid rgba(255,255,255,0.2);

    /* Deep 3D Shadow */
    box-shadow:
        0 25px 50px rgba(0,0,0,0.4),
        0 10px 20px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* Light Mode - Card Styles */
[data-theme="light"] .qx-stack-item,
.light-mode .qx-stack-item {
    background: linear-gradient(145deg,
        rgba(255,255,255,0.95) 0%,
        rgba(245,243,240,0.9) 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(255,255,255,1);
    border-left: 1px solid rgba(255,255,255,0.8);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.12),
        0 8px 16px rgba(0,0,0,0.08),
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 -2px 6px rgba(0,0,0,0.03);
}

/* Individual Card Positions - 3D Transforms (Spread Out) */
.qx-stack-item:nth-child(1) {
    transform: rotateY(-12deg) rotateX(5deg) translateX(-100px) translateY(-90px) translateZ(30px);
    z-index: 1;
    animation: floatCard1 6s ease-in-out infinite;
}

.qx-stack-item:nth-child(2) {
    transform: rotateY(8deg) rotateX(-3deg) translateX(80px) translateY(10px) translateZ(60px);
    z-index: 3;
    animation: floatCard2 5s ease-in-out infinite;
}

.qx-stack-item:nth-child(3) {
    transform: rotateY(-5deg) rotateX(6deg) translateX(-30px) translateY(100px) translateZ(20px);
    z-index: 2;
    animation: floatCard3 7s ease-in-out infinite;
}

/* Float Animations (Spread Out) */
@keyframes floatCard1 {
    0%, 100% { transform: rotateY(-12deg) rotateX(5deg) translateX(-100px) translateY(-90px) translateZ(30px); }
    50% { transform: rotateY(-10deg) rotateX(8deg) translateX(-105px) translateY(-100px) translateZ(40px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: rotateY(8deg) rotateX(-3deg) translateX(80px) translateY(10px) translateZ(60px); }
    50% { transform: rotateY(10deg) rotateX(0deg) translateX(85px) translateY(-5px) translateZ(70px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: rotateY(-5deg) rotateX(6deg) translateX(-30px) translateY(100px) translateZ(20px); }
    50% { transform: rotateY(-3deg) rotateX(4deg) translateX(-25px) translateY(90px) translateZ(30px); }
}

/* Hover Effects */
.qx-stack-item:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-20px) translateZ(100px) scale(1.08) !important;
    z-index: 10;
    animation: none !important;

    /* Enhanced glow on hover */
    box-shadow:
        0 35px 70px rgba(249,115,22,0.3),
        0 15px 30px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 50px rgba(249,115,22,0.2);
    border-color: rgba(249,115,22,0.5);
}

[data-theme="light"] .qx-stack-item:hover,
.light-mode .qx-stack-item:hover {
    box-shadow:
        0 30px 60px rgba(249,115,22,0.25),
        0 15px 30px rgba(0,0,0,0.15),
        inset 0 2px 0 rgba(255,255,255,1),
        0 0 40px rgba(249,115,22,0.15);
}

/* Premium Product Icon */
.qx-stack-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    transform-style: preserve-3d;

    /* 3D depth effect */
    box-shadow:
        inset 0 -4px 12px rgba(0,0,0,0.1),
        inset 0 2px 0 rgba(255,255,255,0.5);
}

/* Icon Glow Ring */
.qx-stack-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    border: 2px solid currentColor;
    opacity: 0.2;
    transition: all 0.3s;
}

.qx-stack-item:hover .qx-stack-icon::after {
    opacity: 0.5;
    transform: scale(1.15);
}

/* Brand Colors with Gradients */
.qx-stack-icon.windows {
    background: linear-gradient(145deg, rgba(0,120,215,0.25), rgba(0,120,215,0.1));
    color: #0078d7;
    box-shadow:
        inset 0 -4px 12px rgba(0,0,0,0.1),
        inset 0 2px 0 rgba(255,255,255,0.3),
        0 4px 12px rgba(0,120,215,0.2);
}

.qx-stack-icon.office {
    background: linear-gradient(145deg, rgba(217,83,79,0.25), rgba(217,83,79,0.1));
    color: #d9534f;
    box-shadow:
        inset 0 -4px 12px rgba(0,0,0,0.1),
        inset 0 2px 0 rgba(255,255,255,0.3),
        0 4px 12px rgba(217,83,79,0.2);
}

.qx-stack-icon.adobe {
    background: linear-gradient(145deg, rgba(255,0,0,0.2), rgba(255,0,0,0.08));
    color: #ff0000;
    box-shadow:
        inset 0 -4px 12px rgba(0,0,0,0.1),
        inset 0 2px 0 rgba(255,255,255,0.3),
        0 4px 12px rgba(255,0,0,0.15);
}

/* Light Mode Icon Adjustments */
[data-theme="light"] .qx-stack-icon,
.light-mode .qx-stack-icon {
    box-shadow:
        inset 0 -4px 12px rgba(0,0,0,0.05),
        inset 0 2px 0 rgba(255,255,255,0.8),
        0 4px 12px rgba(0,0,0,0.1);
}

/* Product Info */
.qx-stack-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qx-stack-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--qx-text);
    margin: 0;
    letter-spacing: -0.01em;
}

.qx-stack-info span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Price Tag Effect */
.qx-stack-info span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--qx-primary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Reflection Effect on Cards */
.qx-stack-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.15) 0%,
        transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

[data-theme="light"] .qx-stack-item::before,
.light-mode .qx-stack-item::before {
    background: linear-gradient(180deg,
        rgba(255,255,255,0.6) 0%,
        transparent 100%);
}

.qx-hero-content {
    position: relative;
    z-index: 10;
}

.qx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: 1px solid rgba(251,191,36,0.5);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}

.qx-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--qx-text);
    margin-bottom: 1.5rem;
}

.qx-hero-title .qx-highlight {
    background: linear-gradient(135deg, var(--qx-primary), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.qx-hero-desc {
    font-size: 1.25rem;
    color: var(--qx-text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.qx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--qx-transition);
    text-decoration: none;
    box-shadow: 0 10px 40px var(--qx-primary-glow);
}

.qx-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px var(--qx-primary-glow);
    color: white;
}

.qx-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: transparent;
    color: var(--qx-text);
    font-weight: 600;
    border: 2px solid var(--qx-border);
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--qx-transition);
    text-decoration: none;
}

.qx-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    color: white;
}

/* Hero Visual */
.qx-hero-visual {
    position: relative;
    perspective: 1000px;
}

/* Glass Panel Container - Cam Pano Efekti */
.qx-float-card {
    position: relative;

    /* Glassmorphism - Cam Efekti */
    background: linear-gradient(145deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);

    /* Glass Border */
    border: 1px solid rgba(255,255,255,0.18);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-left: 1px solid rgba(255,255,255,0.25);
    border-radius: 2rem;
    padding: 2.5rem;

    /* 3D Transform */
    transform: rotateY(-8deg) rotateX(4deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Deep Glass Shadow & Glow */
    box-shadow:
        0 40px 80px rgba(0,0,0,0.35),
        0 15px 35px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 0 80px rgba(255,255,255,0.03);
}

/* Light Mode - Glass Panel */
[data-theme="light"] .qx-float-card,
.light-mode .qx-float-card {
    background: linear-gradient(145deg,
        rgba(255,255,255,0.7) 0%,
        rgba(255,255,255,0.4) 100%);
    border: 1px solid rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,1);
    border-left: 1px solid rgba(255,255,255,0.9);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.1),
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 0 60px rgba(255,255,255,0.5);
}

.qx-float-card:hover {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-10px);
    box-shadow:
        0 50px 100px rgba(0,0,0,0.4),
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 40px rgba(249,115,22,0.1);
}

.qx-float-badge {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: var(--qx-dark);
    border: 1px solid var(--qx-glass-border);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: floatBadge 4s ease-in-out infinite;
}

/* Light Mode - Float Badge Styles */
[data-theme="light"] .qx-float-badge,
.light-mode .qx-float-badge {
    background: rgba(255,255,255,0.95);
    color: #1e293b;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.qx-float-badge-1 { top: 10%; left: -15%; animation-delay: 0s; }
.qx-float-badge-2 { bottom: 20%; right: -10%; animation-delay: -2s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   LICENSE SHOWCASE - PREMIUM DESIGN
   ======================================== */

.lj-showcase {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

/* Holographic Glow Ring */
.lj-showcase-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(249, 115, 22, 0.4) 10%,
        transparent 20%,
        rgba(249, 115, 22, 0.3) 35%,
        transparent 45%,
        rgba(251, 191, 36, 0.4) 55%,
        transparent 65%,
        rgba(249, 115, 22, 0.3) 80%,
        transparent 90%
    );
    animation: ringRotate 15s linear infinite;
    opacity: 0.6;
    filter: blur(20px);
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* License Display Container */
.lj-license-display {
    position: relative;
    z-index: 10;
}

/* Featured License Card - Credit Card Style */
.lj-featured-license {
    position: relative;
    width: 360px;
    height: 220px;
    background: linear-gradient(145deg,
        rgba(249, 115, 22, 0.15) 0%,
        rgba(30, 41, 59, 0.95) 30%,
        rgba(15, 23, 42, 0.98) 100%);
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.lj-featured-license:hover {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-10px) scale(1.02);
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.6),
        0 40px 80px -30px rgba(249, 115, 22, 0.4),
        0 0 60px rgba(249, 115, 22, 0.2);
}

/* Light Mode */
[data-theme="light"] .lj-featured-license,
.light-mode .lj-featured-license {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 247, 237, 0.9) 50%,
        rgba(254, 243, 199, 0.85) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.15),
        0 20px 40px -20px rgba(249, 115, 22, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 1);
}

/* Hologram Pattern Overlay */
.lj-license-hologram {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(249, 115, 22, 0.03) 1px,
            transparent 2px,
            transparent 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(249, 115, 22, 0.02) 1px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
    opacity: 0.5;
}

/* License Chip (Credit Card Chip) */
.lj-license-chip {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 50px;
    height: 40px;
    background: linear-gradient(145deg, #d4af37 0%, #b8860b 50%, #daa520 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        inset 0 -2px 4px rgba(0,0,0,0.2),
        inset 0 2px 0 rgba(255,255,255,0.3),
        0 4px 12px rgba(0,0,0,0.3);
}

.lj-chip-lines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    padding: 8px 6px;
    height: 100%;
}

.lj-chip-lines span {
    background: linear-gradient(135deg, #c9a227 0%, #8b7355 100%);
    border-radius: 2px;
}

/* Brand Icon */
.lj-license-brand {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, rgba(0,120,215,0.2), rgba(0,120,215,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #0078d7;
    box-shadow: 0 8px 24px rgba(0,120,215,0.2);
}

/* License Info */
.lj-license-info {
    position: absolute;
    top: 85px;
    left: 24px;
}

.lj-license-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(249, 115, 22, 0.8);
    font-weight: 600;
}

.lj-license-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin: 4px 0 0 0;
    letter-spacing: -0.02em;
}

[data-theme="light"] .lj-license-name,
.light-mode .lj-license-name {
    color: #1e293b;
}

/* License Code */
.lj-license-code {
    position: absolute;
    bottom: 50px;
    left: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

[data-theme="light"] .lj-license-code,
.light-mode .lj-license-code {
    color: rgba(0,0,0,0.35);
}

/* Price Section */
.lj-license-price {
    position: absolute;
    bottom: 20px;
    right: 24px;
    text-align: right;
}

.lj-price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lj-price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 2px;
}

[data-theme="light"] .lj-price-label,
.light-mode .lj-price-label {
    color: rgba(0,0,0,0.4);
}

/* Shine Effect */
.lj-license-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.1) 45%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.1) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: cardShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardShine {
    0%, 100% { transform: translateX(-100%) rotate(25deg); }
    50% { transform: translateX(100%) rotate(25deg); }
}

/* Orbiting Mini Cards */
.lj-orbit-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lj-orbit-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lj-orbit-card:hover {
    transform: scale(1.08) translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.4);
}

[data-theme="light"] .lj-orbit-card,
.light-mode .lj-orbit-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Orbit Positions */
.lj-orbit-1 {
    top: -30px;
    right: -80px;
    animation: orbitFloat1 5s ease-in-out infinite;
}

.lj-orbit-2 {
    bottom: -20px;
    left: -100px;
    animation: orbitFloat2 6s ease-in-out infinite;
}

.lj-orbit-3 {
    bottom: 30px;
    right: -90px;
    animation: orbitFloat3 5.5s ease-in-out infinite;
}

@keyframes orbitFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes orbitFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes orbitFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

/* Orbit Icon */
.lj-orbit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.lj-orbit-icon.office {
    background: linear-gradient(145deg, rgba(234,88,12,0.2), rgba(234,88,12,0.1));
    color: #ea580c;
}

.lj-orbit-icon.adobe {
    background: linear-gradient(145deg, rgba(239,68,68,0.2), rgba(239,68,68,0.1));
    color: #ef4444;
}

.lj-orbit-icon.autodesk {
    background: linear-gradient(145deg, rgba(16,185,129,0.2), rgba(16,185,129,0.1));
    color: #10b981;
}

/* Orbit Info */
.lj-orbit-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lj-orbit-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

[data-theme="light"] .lj-orbit-name,
.light-mode .lj-orbit-name {
    color: #1e293b;
}

.lj-orbit-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f97316;
}

/* Trust Pills */
.lj-showcase-trust {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.lj-trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lj-trust-pill:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-3px);
}

[data-theme="light"] .lj-trust-pill,
.light-mode .lj-trust-pill {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.lj-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 0.75rem;
}

.lj-trust-pill span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

[data-theme="light"] .lj-trust-pill span,
.light-mode .lj-trust-pill span {
    color: #1e293b;
}

/* Floating Particles */
.lj-showcase-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lj-showcase-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f97316;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.lj-showcase-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.lj-showcase-particles span:nth-child(2) { left: 25%; animation-delay: 1.2s; }
.lj-showcase-particles span:nth-child(3) { left: 50%; animation-delay: 2.4s; }
.lj-showcase-particles span:nth-child(4) { left: 75%; animation-delay: 3.6s; }
.lj-showcase-particles span:nth-child(5) { left: 90%; animation-delay: 4.8s; }

@keyframes particleFloat {
    0% { bottom: 0; opacity: 0; transform: scale(0); }
    10% { opacity: 0.8; transform: scale(1); }
    90% { opacity: 0.3; }
    100% { bottom: 100%; opacity: 0; transform: scale(0.5); }
}

/* Responsive */
@media (max-width: 992px) {
    .lj-showcase {
        min-height: 450px;
        margin-top: 3rem;
    }

    .lj-showcase-ring {
        width: 320px;
        height: 320px;
    }

    .lj-featured-license {
        width: 300px;
        height: 185px;
        padding: 20px;
        transform: none;
    }

    .lj-orbit-card {
        display: none;
    }

    .lj-showcase-trust {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .lj-showcase {
        min-height: 380px;
    }

    .lj-featured-license {
        width: 280px;
        height: 170px;
        padding: 16px;
    }

    .lj-license-chip {
        width: 40px;
        height: 32px;
        top: 16px;
        left: 16px;
    }

    .lj-license-brand {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        top: 16px;
        right: 16px;
    }

    .lj-license-info {
        top: 65px;
        left: 16px;
    }

    .lj-license-name {
        font-size: 1.1rem;
    }

    .lj-license-code {
        bottom: 40px;
        left: 16px;
        font-size: 0.7rem;
    }

    .lj-license-price {
        bottom: 16px;
        right: 16px;
    }

    .lj-price-tag {
        font-size: 1.25rem;
    }

    .lj-trust-pill {
        padding: 8px 12px;
    }

    .lj-trust-pill span {
        font-size: 0.7rem;
    }
}

/* ========================================
   CLEAN PRODUCT SHOWCASE (NEW)
   ======================================== */

.lj-showcase-clean {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

/* Main Feature Card */
.lj-feature-card {
    position: relative;
    background: linear-gradient(145deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,247,237,0.9) 100%);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow:
        0 20px 60px -15px rgba(249, 115, 22, 0.15),
        0 10px 30px -10px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
}

.lj-feature-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px -15px rgba(249, 115, 22, 0.25),
        0 15px 40px -10px rgba(0,0,0,0.15);
}

[data-theme="dark"] .lj-feature-card {
    background: linear-gradient(145deg,
        rgba(30, 41, 59, 0.95) 0%,
        rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.lj-feature-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.lj-feature-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.lj-feature-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(145deg, rgba(0,120,215,0.15), rgba(0,120,215,0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0078d7;
    box-shadow: 0 8px 24px rgba(0,120,215,0.15);
}

.lj-feature-text { flex: 1; }

.lj-feature-label {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.lj-feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .lj-feature-title { color: white; }

.lj-feature-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

[data-theme="dark"] .lj-feature-desc { color: rgba(255,255,255,0.6); }

.lj-feature-price { text-align: right; }

.lj-price-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lj-price-period {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .lj-price-period { color: rgba(255,255,255,0.5); }

/* Product Row */
.lj-product-row {
    display: flex;
    gap: 1rem;
}

.lj-product-mini {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
}

.lj-product-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

[data-theme="dark"] .lj-product-mini {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
}

.lj-mini-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.lj-mini-icon.office {
    background: linear-gradient(145deg, rgba(234,88,12,0.15), rgba(234,88,12,0.05));
    color: #ea580c;
}

.lj-mini-icon.adobe {
    background: linear-gradient(145deg, rgba(239,68,68,0.15), rgba(239,68,68,0.05));
    color: #ef4444;
}

.lj-mini-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lj-mini-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

[data-theme="dark"] .lj-mini-name { color: white; }

.lj-mini-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f97316;
}

/* Trust Row */
.lj-trust-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.lj-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lj-trust-badge:hover {
    background: rgba(249, 115, 22, 0.12);
    transform: translateY(-2px);
}

.lj-trust-badge i {
    color: #f97316;
    font-size: 0.9rem;
}

.lj-trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

[data-theme="dark"] .lj-trust-badge {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

[data-theme="dark"] .lj-trust-badge span { color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
    .lj-showcase-clean { padding: 1.5rem; gap: 1rem; }
    .lj-feature-content { flex-direction: column; text-align: center; }
    .lj-feature-price { text-align: center; }
    .lj-product-row { flex-direction: column; }
    .lj-trust-row { flex-direction: column; align-items: center; }
}

/* ========================================
   TRUST STRIP - Enhanced
   ======================================== */
.qx-trust {
    background: var(--qx-dark);
    padding: 4rem 0;
    border-top: 1px solid var(--qx-border);
    border-bottom: 1px solid var(--qx-border);
    position: relative;
}

.qx-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--qx-primary), transparent);
    opacity: 0.5;
}

.qx-trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--qx-glass-border);
    border-radius: 1.25rem;
    transition: var(--qx-transition);
    position: relative;
    overflow: hidden;
}

.qx-trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s;
}

.qx-trust-item:hover::before {
    left: 100%;
}

.qx-trust-item:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    transform: translateY(-6px);
    border-color: rgba(249,115,22,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.qx-trust-icon {
    width: 64px; height: 64px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    transition: var(--qx-transition);
}

.qx-trust-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    border: 2px solid currentColor;
    opacity: 0.3;
    transition: transform 0.4s, opacity 0.4s;
}

.qx-trust-item:hover .qx-trust-icon::after {
    transform: scale(1.2);
    opacity: 0;
}

.qx-trust-item:hover .qx-trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.qx-trust-icon.primary { background: rgba(249,115,22,0.15); color: #fff; }
.qx-trust-icon.cyan { background: rgba(6,182,212,0.15); color: var(--qx-cyan); }
.qx-trust-icon.accent { background: rgba(139,92,246,0.15); color: var(--qx-accent); }
.qx-trust-icon.success { background: rgba(16,185,129,0.15); color: var(--qx-success); }

.qx-trust-content { flex: 1; }

.qx-trust-title {
    color: var(--qx-text);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
    transition: color 0.3s;
}

.qx-trust-item:hover .qx-trust-title {
    background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.qx-trust-desc {
    color: var(--qx-text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   CATEGORY STORIES - Enhanced
   ======================================== */
.qx-stories {
    background: var(--qx-void);
    padding: 5rem 0;
    position: relative;
}

.qx-stories::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.qx-stories-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.qx-stories-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--qx-text);
    margin-bottom: 0.5rem;
}

.qx-stories-subtitle {
    color: var(--qx-text-muted);
    font-size: 1rem;
}

.qx-stories-scroll {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.qx-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: var(--qx-transition);
}

.qx-story:hover { transform: translateY(-10px); }

.qx-story-ring {
    width: 88px; height: 88px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--qx-primary), var(--qx-accent), var(--qx-cyan));
    background-size: 200% 200%;
    animation: gradientRotate 4s ease infinite;
    transition: var(--qx-transition);
    position: relative;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.qx-story:hover .qx-story-ring {
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--qx-primary-glow);
}

.qx-story-avatar {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--qx-dark);
    border: 4px solid var(--qx-void);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    /* Use CSS variable for icon color - changes based on theme */
    color: var(--qx-story-icon, #ffffff);
    transition: var(--qx-transition-fast);
    will-change: transform;
}

.qx-story:hover .qx-story-avatar {
    transform: scale(1.05);
    background: var(--qx-surface);
}

.qx-story-avatar i {
    transition: var(--qx-transition-fast);
    color: inherit;
}

.qx-story:hover .qx-story-avatar i {
    color: #fff;
}

.qx-story-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--qx-text-muted);
    padding: 0.5rem 1.25rem;
    background: var(--qx-glass);
    border-radius: 100px;
    border: 1px solid var(--qx-glass-border);
    transition: var(--qx-transition);
}

.qx-story:hover .qx-story-label {
    background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    background: linear-gradient(135deg, rgba(249,115,22,0.9), rgba(234,88,12,0.85));
    border-color: rgba(249,115,22,0.6);
    box-shadow: 0 5px 20px rgba(249,115,22,0.3);
}

/* ========================================
   PRODUCTS SECTION - Enhanced Premium
   ======================================== */
.qx-products {
    background: var(--qx-dark);
    padding: 7rem 0;
    position: relative;
}

.qx-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--qx-primary), transparent);
    opacity: 0.3;
}

.qx-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.qx-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: 1px solid rgba(251,191,36,0.5);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.qx-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--qx-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.qx-section-title .qx-highlight {
    background: linear-gradient(135deg, var(--qx-primary), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qx-section-desc {
    font-size: 1.125rem;
    color: var(--qx-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.qx-product-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--qx-glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--qx-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Stretched Link - Kartın tamamını tıklanabilir yapar */
.qx-product-card .stretched-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
}

.qx-product-card .qx-add-btn {
    position: relative;
    z-index: 2;
}

.qx-product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(249,115,22,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.qx-product-card:hover::before {
    opacity: 1;
}

.qx-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 20px rgba(249,115,22,0.1);
}

.qx-product-img,
.qx-product-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(139,92,246,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--qx-radius) var(--qx-radius) 0 0;
}

.qx-product-img::before,
.qx-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s;
}

.qx-product-card:hover .qx-product-img::before,
.qx-product-card:hover .qx-product-image::before {
    left: 100%;
}

.qx-product-img img,
.qx-product-image img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    transition: var(--qx-transition);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.qx-product-card:hover .qx-product-img img,
.qx-product-card:hover .qx-product-image img {
    transform: scale(1.15) translateY(-5px);
}

.qx-product-img i,
.qx-product-image i {
    font-size: 4.5rem;
    color: var(--qx-text-muted);
    opacity: 0.6;
    transition: var(--qx-transition);
}

.qx-product-card:hover .qx-product-img i,
.qx-product-card:hover .qx-product-image i {
    opacity: 0.8;
    transform: scale(1.1);
    color: #fff;
}

.qx-product-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(239,68,68,0.4);
}

.qx-product-badge.bestseller {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}

/* Badge Icon Size Fix - Overrides parent .qx-product-img i rule */
.qx-product-badge i {
    font-size: 0.875rem !important;
    opacity: 1 !important;
    color: inherit !important;
}

.qx-discount-badge i {
    font-size: 0.75rem !important;
    opacity: 1 !important;
    color: inherit !important;
}

.qx-discount-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--qx-primary), #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px var(--qx-primary-glow);
}

.qx-product-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.qx-product-cat {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.qx-product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--qx-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.qx-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.qx-product-card:hover .qx-product-title a {
    background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.qx-product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.qx-product-rating i {
    color: #fbbf24;
}

.qx-product-rating span {
    color: var(--qx-text-muted);
    margin-left: 0.375rem;
    font-size: 0.8125rem;
}

.qx-product-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--qx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.qx-product-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--qx-primary), #fbbf24);
    transition: width 0.4s;
}

.qx-product-card:hover .qx-product-footer::before {
    width: 100%;
}

.qx-product-price .old {
    font-size: 0.9rem;
    color: var(--qx-text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.125rem;
}

.qx-product-price .current {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--qx-primary), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.qx-add-btn {
    width: 52px; height: 52px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--qx-transition);
    font-size: 1.125rem;
}

.qx-add-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: white;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 10px 30px var(--qx-primary-glow);
    border-color: transparent;
}

/* View All Button */
.qx-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--qx-glass-border);
    border-radius: 1rem;
    color: var(--qx-text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--qx-transition);
    text-decoration: none;
}

.qx-view-all-btn:hover {
    background: var(--qx-primary);
    border-color: #f97316;
    background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    box-shadow: 0 10px 30px var(--qx-primary-glow);
}

/* ========================================
   PRODUCT CARD INFO & OVERLAY STYLES
   (Used by products.blade.php and trending.blade.php)
   ======================================== */
.qx-product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.qx-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--qx-text);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.qx-product-card:hover .qx-product-name {
    background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.qx-product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0.8;
}

.qx-product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.qx-price-old {
    font-size: 0.875rem;
    color: var(--qx-text-muted);
    text-decoration: line-through;
}

.qx-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--qx-primary), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qx-tax-label {
    font-size: 0.6875rem;
    color: var(--qx-text-muted);
    opacity: 0.7;
}

/* Product Badges */
.qx-product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.qx-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    color: white;
}

.qx-badge-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.qx-badge-success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.qx-badge-primary {
    background: linear-gradient(135deg, var(--qx-primary), #ea580c);
    box-shadow: 0 4px 12px var(--qx-primary-glow);
}

/* Product Overlay */
.qx-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-radius: inherit;
}

.qx-product-card:hover .qx-product-overlay {
    opacity: 1;
}

.qx-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--qx-primary), #ea580c);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px var(--qx-primary-glow);
}

.qx-product-card:hover .qx-overlay-btn {
    transform: translateY(0);
}

.qx-overlay-btn:hover {
    box-shadow: 0 8px 30px var(--qx-primary-glow);
}

/* Product Quick Actions */
.qx-product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 4;
}

.qx-product-card:hover .qx-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.qx-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--qx-glass);
    border: 1px solid var(--qx-glass-border);
    color: var(--qx-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.qx-action-btn:hover {
    background: var(--qx-primary);
    color: white;
    border-color: #fff;
    transform: scale(1.1);
}

/* Product Rating in Card */
.qx-product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.qx-product-rating i {
    font-size: 0.625rem;
}

.qx-rating-count {
    color: var(--qx-text-muted);
    margin-left: 0.25rem;
}

/* Link Style */
.qx-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.qx-link:hover {
    color: #ea580c;
    text-decoration: none;
}

.qx-link i {
    transition: transform 0.3s ease;
}

.qx-link:hover i {
    transform: translateX(3px);
}

/* Trending Section Specific */
.qx-trending {
    position: relative;
}

/* ========================================
   FEATURES SECTION - Premium Grid
   ======================================== */
.qx-features {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 7rem 0;
    position: relative;
}

.qx-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.qx-feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--qx-glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--qx-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.qx-feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(249,115,22,0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.qx-feature-card:hover::before {
    opacity: 1;
}

.qx-feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(249,115,22,0.4);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.qx-feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
}

.qx-feature-icon {
    width: 90px; height: 90px;
    border-radius: 1.5rem;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: #fff;
    border: none;
    transition: var(--qx-transition);
    position: relative;
}

.qx-feature-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 1.75rem;
    border: 2px dashed rgba(249,115,22,0.2);
    animation: rotateFeature 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

@keyframes rotateFeature {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qx-feature-card:hover .qx-feature-icon::after {
    opacity: 1;
}

.qx-feature-card:hover .qx-feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px var(--qx-primary-glow);
    border-color: #fff;
}

.qx-feature-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--qx-text);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.qx-feature-card:hover .qx-feature-title {
    background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.qx-feature-desc {
    font-size: 0.9375rem;
    color: var(--qx-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION - Premium Reviews
   ======================================== */
.qx-testimonials {
    background: var(--qx-void);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.qx-testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.qx-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .qx-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.qx-testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--qx-glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--qx-transition);
    position: relative;
}

.qx-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #fff;
    opacity: 0.15;
    line-height: 1;
}

.qx-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.qx-testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 0.875rem;
}

.qx-testimonial-text {
    color: var(--qx-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.qx-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--qx-border);
}

.qx-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--qx-primary), var(--qx-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
}

.qx-testimonial-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--qx-text);
    margin: 0 0 0.25rem 0;
}

.qx-testimonial-info span {
    font-size: 0.8125rem;
    color: var(--qx-text-muted);
}

.qx-testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--qx-success);
    margin-left: auto;
}

/* ========================================
   BRANDS STRIP - Partner Logos
   ======================================== */
.qx-brands {
    background: var(--qx-dark);
    padding: 4rem 0;
    border-top: 1px solid var(--qx-border);
    border-bottom: 1px solid var(--qx-border);
    position: relative;
    overflow: hidden;
}

.qx-brands-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qx-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.qx-brands-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.qx-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: var(--qx-transition);
    filter: grayscale(100%);
}

.qx-brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.qx-brand-item i {
    font-size: 3rem;
    color: var(--qx-text-muted);
}

.qx-brand-item:hover i {
    color: #f97316;
}

.qx-brand-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--qx-text-muted);
    letter-spacing: -0.02em;
}

.qx-brand-item:hover span {
    color: var(--qx-text);
}

/* Stats Counter Section */
.qx-stats {
    background: linear-gradient(135deg, var(--qx-dark) 0%, var(--qx-void) 100%);
    padding: 5rem 0;
    position: relative;
}

.qx-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--qx-border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--qx-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.qx-stat-big {
    text-align: center;
    position: relative;
    z-index: 1;
}

.qx-stat-big-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--qx-primary), #fbbf24, var(--qx-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.qx-stat-big-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--qx-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .qx-stat-big-value {
        font-size: 2.5rem;
    }
    .qx-testimonial-grid {
        gap: 1.5rem;
    }
}

/* ========================================
   FAQ SECTION - Enhanced
   ======================================== */
.qx-faq {
    background: var(--qx-void);
    padding: 7rem 0;
    position: relative;
}

.qx-faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--qx-border), transparent);
}

.qx-accordion-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--qx-glass-border);
    border-radius: 1.25rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--qx-transition);
    position: relative;
}

.qx-accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--qx-primary), var(--qx-accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.qx-accordion-item.active::before,
.qx-accordion-item:hover::before {
    opacity: 1;
}

.qx-accordion-item:hover,
.qx-accordion-item.active {
    border-color: rgba(249,115,22,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.qx-accordion-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--qx-text);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.qx-accordion-btn:hover { color: #f97316; }
.qx-accordion-btn:hover span:not(.qx-accordion-num) { background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.qx-accordion-btn:hover .qx-accordion-num { -webkit-text-fill-color: #fff; background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: padding-box; background-clip: padding-box; }
.qx-accordion-btn:hover .qx-accordion-toggle { -webkit-text-fill-color: #fff; }

.qx-accordion-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.qx-accordion-num {
    width: 36px;
    height: 36px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.qx-accordion-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    transition: var(--qx-transition);
    flex-shrink: 0;
}

.qx-accordion-item.active .qx-accordion-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: white;
    border: none;
}

.qx-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.qx-accordion-item.active .qx-accordion-body {
    max-height: 500px;
    padding: 0 2rem 1.75rem 5rem;
}

.qx-accordion-body p {
    color: var(--qx-text-muted);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9375rem;
}

/* ========================================
   PARALLAX BANNER SECTION - Modern Gradient Wave
   ======================================== */
.qx-parallax {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

/* Animated Gradient Background */
.qx-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(249,115,22,0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,0.25), transparent),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(59,130,246,0.2), transparent);
    animation: gradientPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Animated Wave Layer 1 */
.qx-parallax-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f97316' fill-opacity='0.15' d='M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,165.3C672,160,768,192,864,197.3C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: waveMove 15s linear infinite;
    z-index: 2;
    opacity: 0.6;
}

/* Animated Wave Layer 2 */
.qx-parallax-wave-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238b5cf6' fill-opacity='0.12' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: waveMove 20s linear infinite reverse;
    z-index: 3;
    opacity: 0.5;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Floating Particles */
.qx-parallax-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
}

.qx-parallax-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(249,115,22,0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(249,115,22,0.4);
    animation: particleFloat 6s ease-in-out infinite;
}

.qx-parallax-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.qx-parallax-particles span:nth-child(2) { left: 25%; top: 40%; animation-delay: 1s; width: 6px; height: 6px; }
.qx-parallax-particles span:nth-child(3) { left: 40%; top: 15%; animation-delay: 2s; }
.qx-parallax-particles span:nth-child(4) { left: 60%; top: 35%; animation-delay: 0.5s; width: 5px; height: 5px; }
.qx-parallax-particles span:nth-child(5) { left: 75%; top: 25%; animation-delay: 1.5s; }
.qx-parallax-particles span:nth-child(6) { left: 85%; top: 45%; animation-delay: 2.5s; width: 3px; height: 3px; }
.qx-parallax-particles span:nth-child(7) { left: 15%; top: 60%; animation-delay: 3s; background: rgba(139,92,246,0.5); }
.qx-parallax-particles span:nth-child(8) { left: 50%; top: 70%; animation-delay: 3.5s; background: rgba(59,130,246,0.5); }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

/* Glassmorphism Content Container */
.qx-parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 3.5rem 3rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 25px 50px -12px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Glowing Border Effect */
.qx-parallax-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(249,115,22,0.5), rgba(139,92,246,0.5), rgba(59,130,246,0.5), rgba(249,115,22,0.5));
    background-size: 300% 300%;
    animation: borderGlow 6s ease infinite;
    border-radius: 2.1rem;
    z-index: -1;
    opacity: 0.5;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtitle Badge */
.qx-parallax-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.1));
    border-radius: 100px;
    border: 1px solid rgba(249,115,22,0.4);
    box-shadow: 0 0 20px rgba(249,115,22,0.3);
}

.qx-parallax-subtitle::before {
    content: '✨';
    font-size: 0.9rem;
}

/* Main Title */
.qx-parallax-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.qx-parallax-title .highlight {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #f97316 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: none;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Description */
.qx-parallax-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.qx-parallax-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(249,115,22,0.4),
        0 0 0 0 rgba(249,115,22,0.4);
    position: relative;
    overflow: hidden;
}

.qx-parallax-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.qx-parallax-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(249,115,22,0.5),
        0 0 0 4px rgba(249,115,22,0.2);
    color: white;
}

.qx-parallax-btn:hover::before {
    left: 100%;
}

.qx-parallax-btn i {
    transition: transform 0.3s ease;
}

.qx-parallax-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .qx-parallax {
        min-height: 450px;
    }

    .qx-parallax-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 1.5rem;
    }

    .qx-parallax-wave,
    .qx-parallax-wave-2 {
        height: 60px;
    }

    .qx-parallax-particles span {
        display: none;
    }

    .qx-parallax-particles span:nth-child(1),
    .qx-parallax-particles span:nth-child(4) {
        display: block;
    }
}



/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.qx-newsletter {
    background: var(--qx-dark);
    padding: 6rem 0;
}

.qx-newsletter-card {
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(139,92,246,0.05));
    border: 2px solid rgba(249,115,22,0.2);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qx-newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qx-newsletter-content {
    position: relative;
    z-index: 1;
}

.qx-newsletter-icon {
    width: 80px; height: 80px;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    border: 2px solid rgba(249,115,22,0.3);
}

.qx-newsletter-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--qx-text);
    margin-bottom: 1rem;
}

.qx-newsletter-desc {
    font-size: 1.125rem;
    color: var(--qx-text-muted);
    margin-bottom: 2rem;
}

.qx-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.qx-newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: var(--qx-glass);
    border: 1px solid var(--qx-glass-border);
    border-radius: 1rem;
    color: var(--qx-text);
    font-size: 1rem;
    outline: none;
    transition: var(--qx-transition);
}

.qx-newsletter-input:focus {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}

.qx-newsletter-input::placeholder {
    color: var(--qx-text-muted);
}

/* ========================================
   CTA BANNER
   ======================================== */
.qx-cta {
    background: var(--qx-void);
    padding: 6rem 0;
    position: relative;
}

.qx-cta-card {
    background: linear-gradient(135deg, var(--qx-primary), #ea580c);
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.qx-cta-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(15deg);
}

.qx-cta-content {
    position: relative;
    z-index: 1;
}

.qx-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.qx-cta-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.qx-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #fff;
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--qx-transition);
    text-decoration: none;
}

.qx-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ========================================
   LIGHT MODE OVERRIDES
   Tatlı Beyaz/Krem Tonları
   ======================================== */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .qx-hero,
    :root:not([data-theme="dark"]) .qx-testimonials,
    :root:not([data-theme="dark"]) .qx-faq,
    :root:not([data-theme="dark"]) .qx-stories,
    :root:not([data-theme="dark"]) .qx-cta {
        background: var(--qx-void);
    }

    :root:not([data-theme="dark"]) .qx-trust,
    :root:not([data-theme="dark"]) .qx-products,
    :root:not([data-theme="dark"]) .qx-newsletter,
    :root:not([data-theme="dark"]) .qx-brands {
        background: var(--qx-dark);
    }

    :root:not([data-theme="dark"]) .qx-features,
    :root:not([data-theme="dark"]) .qx-stats {
        background: linear-gradient(135deg, #f5f3f0 0%, #faf9f7 100%);
    }

    /* Light mode orbs - softer, warmer colors */
    :root:not([data-theme="dark"]) .qx-orb {
        opacity: 0.25;
        filter: blur(120px);
    }

    :root:not([data-theme="dark"]) .qx-orb-1 {
        background: radial-gradient(circle, #fed7aa 0%, transparent 70%);
    }

    :root:not([data-theme="dark"]) .qx-orb-2 {
        background: radial-gradient(circle, #ddd6fe 0%, transparent 70%);
    }

    :root:not([data-theme="dark"]) .qx-orb-3 {
        background: radial-gradient(circle, #a5f3fc 0%, transparent 70%);
    }

    /* Light mode grid floor */
    :root:not([data-theme="dark"]) .qx-grid-floor {
        background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        opacity: 0.6;
    }

    /* Light mode particles */
    :root:not([data-theme="dark"]) .qx-particle {
        background: var(--qx-primary);
        opacity: 0.6;
    }

    /* Light mode cards - soft shadows */
    :root:not([data-theme="dark"]) .qx-product-card,
    :root:not([data-theme="dark"]) .qx-feature-card,
    :root:not([data-theme="dark"]) .qx-testimonial-card,
    :root:not([data-theme="dark"]) .qx-trust-item,
    :root:not([data-theme="dark"]) .qx-accordion-item {
        background: rgba(255,255,255,0.8);
        border-color: rgba(0,0,0,0.06);
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }

    :root:not([data-theme="dark"]) .qx-product-card:hover,
    :root:not([data-theme="dark"]) .qx-feature-card:hover,
    :root:not([data-theme="dark"]) .qx-testimonial-card:hover,
    :root:not([data-theme="dark"]) .qx-trust-item:hover {
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: rgba(251,191,36,0.5);
    }

    /* Light mode float card */
    :root:not([data-theme="dark"]) .qx-float-card {
        background: rgba(255,255,255,0.9);
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    /* Light mode badges */
    :root:not([data-theme="dark"]) .qx-float-badge,
    :root:not([data-theme="dark"]) .qx-section-badge {
        background: linear-gradient(135deg, #f97316, #fbbf24);
        border: none;
        box-shadow: none;
    }

    /* Light mode hero badge */
    :root:not([data-theme="dark"]) .qx-badge {
        background: linear-gradient(135deg, #f97316, #fbbf24);
        border-color: rgba(251,191,36,0.5);
    }

    /* Light mode product image area */
    :root:not([data-theme="dark"]) .qx-product-img,
    :root:not([data-theme="dark"]) .qx-product-image {
        background: linear-gradient(135deg, #fef3e2 0%, #f5f0ff 100%);
    }

    /* Light mode stats */
    :root:not([data-theme="dark"]) .qx-stat {
        background: rgba(255,255,255,0.8);
        border-color: rgba(0,0,0,0.06);
    }

    :root:not([data-theme="dark"]) .qx-stats::before {
        background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    }

    /* Light mode newsletter */
    :root:not([data-theme="dark"]) .qx-newsletter-card {
        background: linear-gradient(135deg, rgba(234,88,12,0.08), rgba(124,58,237,0.05));
        border-color: rgba(234,88,12,0.15);
    }

    :root:not([data-theme="dark"]) .qx-newsletter-input {
        background: rgba(255,255,255,0.9);
        border-color: rgba(0,0,0,0.1);
        color: var(--qx-text);
    }

    :root:not([data-theme="dark"]) .qx-newsletter-input::placeholder {
        color: #94a3b8;
    }

    /* Light mode story rings */
    :root:not([data-theme="dark"]) .qx-story-avatar {
        background: #ffffff;
        border-color: var(--qx-void);
    }

    :root:not([data-theme="dark"]) .qx-story-label {
        background: rgba(255,255,255,0.9);
        border-color: rgba(0,0,0,0.08);
        color: #1f2937;
    }

    :root:not([data-theme="dark"]) .qx-story:hover .qx-story-label {
        background: linear-gradient(135deg, #f97316, #fbbf24) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
        background: linear-gradient(135deg, #f97316, #ea580c) !important;
        border-color: #f97316 !important;
    }

    /* Light mode brands */
    :root:not([data-theme="dark"]) .qx-brand-item {
        filter: grayscale(50%);
    }

    :root:not([data-theme="dark"]) .qx-brand-item:hover {
        filter: grayscale(0%);
    }

    /* Light mode stack items */
    :root:not([data-theme="dark"]) .qx-stack-item {
        background: rgba(255,255,255,0.95);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* Light mode buttons outline */
    :root:not([data-theme="dark"]) .qx-btn-secondary {
        border-color: rgba(0,0,0,0.15);
        color: var(--qx-text);
    }

    :root:not([data-theme="dark"]) .qx-btn-secondary:hover {
        background: rgba(0,0,0,0.03);
        border-color: rgba(0,0,0,0.25);
    }

    :root:not([data-theme="dark"]) .qx-view-all-btn {
        border-color: rgba(0,0,0,0.15);
        color: var(--qx-text);
    }

    :root:not([data-theme="dark"]) .qx-view-all-btn:hover {
        background: var(--qx-primary);
        border-color: #f97316;
        background: linear-gradient(135deg, #f97316, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* Light mode icons in trust items */
    :root:not([data-theme="dark"]) .qx-trust-icon.primary {
        background: rgba(234,88,12,0.1);
    }

    :root:not([data-theme="dark"]) .qx-trust-icon.cyan {
        background: rgba(8,145,178,0.1);
    }

    :root:not([data-theme="dark"]) .qx-trust-icon.accent {
        background: rgba(124,58,237,0.1);
    }

    :root:not([data-theme="dark"]) .qx-trust-icon.success {
        background: rgba(5,150,105,0.1);
    }
}

/* Explicit light-mode class override */
.light-mode .qx-hero,
.light-mode .qx-testimonials,
.light-mode .qx-faq,
.light-mode .qx-stories,
.light-mode .qx-cta {
    background: var(--qx-void);
}

.light-mode .qx-trust,
.light-mode .qx-products,
.light-mode .qx-newsletter,
.light-mode .qx-brands {
    background: var(--qx-dark);
}

.light-mode .qx-features,
.light-mode .qx-stats {
    background: linear-gradient(135deg, #f5f3f0 0%, #faf9f7 100%);
}

.light-mode .qx-orb {
    opacity: 0.25;
    filter: blur(120px);
}

.light-mode .qx-orb-1 {
    background: radial-gradient(circle, #fed7aa 0%, transparent 70%);
}

.light-mode .qx-orb-2 {
    background: radial-gradient(circle, #ddd6fe 0%, transparent 70%);
}

.light-mode .qx-orb-3 {
    background: radial-gradient(circle, #a5f3fc 0%, transparent 70%);
}

.light-mode .qx-product-card,
.light-mode .qx-feature-card,
.light-mode .qx-testimonial-card,
.light-mode .qx-trust-item,
.light-mode .qx-accordion-item {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.light-mode .qx-float-card {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.light-mode .qx-product-img,
.light-mode .qx-product-image {
    background: linear-gradient(135deg, #fef3e2 0%, #f5f0ff 100%);
}

.light-mode .qx-grid-floor {
    background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

.light-mode .qx-newsletter-card {
    background: linear-gradient(135deg, rgba(234,88,12,0.08), rgba(124,58,237,0.05));
}

.light-mode .qx-newsletter-input {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.1);
}

/* ========================================
   RESPONSIVE - MOBILE-FIRST NATIVE FEEL
   ======================================== */

/* Tablet / Small Desktop */
@media (max-width: 991px) {
    .qx-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    .qx-hero-title { font-size: 2.5rem; }
    .qx-hero-visual { margin-top: 2rem; }
    .qx-float-card { transform: none; }
    .qx-float-badge { display: none; }
    .qx-section-title { font-size: 2rem; }
    .qx-cta-card { padding: 2.5rem; }
    .qx-cta-title { font-size: 1.75rem; }
    .qx-products, .qx-features, .qx-testimonials, .qx-faq { padding: 4rem 0; }

    /* Disable heavy orb animations on tablet */
    .qx-orb { animation: none; opacity: 0.3; }

    /* Grid adjustments */
    .qx-testimonial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Mobile - Native App Feel */
@media (max-width: 768px) {
    /* Base typography and spacing */
    .qx-section { padding: 3rem 0; }
    .qx-section-header { margin-bottom: 2rem; }
    .qx-section-title { font-size: 1.75rem; line-height: 1.3; }
    .qx-section-desc { font-size: 1rem; }
    .qx-section-badge { font-size: 0.75rem; padding: 0.375rem 0.875rem; }

    /* Hero - Mobile optimized */
    .qx-hero { padding: 80px 0 2rem; }
    .qx-hero-title { font-size: 2rem; letter-spacing: -0.02em; }
    .qx-hero-desc { font-size: 1rem; }
    .qx-badge { font-size: 0.75rem; padding: 0.375rem 0.75rem; }

    /* Hide heavy effects on mobile */
    .qx-particles { display: none; }
    .qx-orb { display: none; }
    .qx-grid-floor { opacity: 0.3; }

    /* Product Stack - Hidden on mobile, show single card */
    .qx-product-stack { display: none; }
    .qx-float-card {
        padding: 1rem;
        text-align: center;
    }
    .qx-float-card::before { display: none; }

    /* Hero Stats - Horizontal scroll on mobile */
    .qx-hero-stats {
        display: flex;
        gap: 0.75rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .qx-stat {
        flex: 0 0 auto;
        min-width: 90px;
        padding: 0.75rem 1rem;
    }
    .qx-stat-value { font-size: 1.25rem; }
    .qx-stat-label { font-size: 0.6875rem; }

    /* Buttons - Touch friendly */
    .qx-btn-primary, .qx-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    /* Trust Items - Vertical stack */
    .qx-trust-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    .qx-trust-icon { width: 48px; height: 48px; font-size: 1.25rem; }
    .qx-trust-title { font-size: 0.9375rem; }
    .qx-trust-desc { font-size: 0.8125rem; }

    /* Stories - Horizontal scroll, native feel */
    .qx-stories-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem 0;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .qx-stories-scroll::-webkit-scrollbar { display: none; }
    .qx-story { flex: 0 0 auto; }
    .qx-story-ring { width: 64px; height: 64px; }
    .qx-story-avatar { font-size: 1.5rem; }
    .qx-story-label { font-size: 0.75rem; padding: 0.375rem 0.75rem; }

    /* Products - Native App Style 2-Column Grid */
    .qx-product-card {
        border-radius: 0.875rem;
        overflow: hidden;
    }
    .qx-product-img, .qx-product-image {
        height: 100px;
        padding: 0.75rem;
    }
    .qx-product-img i, .qx-product-image i { font-size: 2rem; }
    .qx-product-body {
        padding: 0.75rem;
    }
    .qx-product-cat {
        font-size: 0.625rem;
        margin-bottom: 0.25rem;
    }
    .qx-product-title {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .qx-product-rating {
        font-size: 0.6875rem;
        margin-bottom: 0.5rem;
    }
    .qx-product-rating i { font-size: 0.625rem; }
    .qx-product-footer {
        padding-top: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .qx-product-price {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .qx-product-price .old {
        font-size: 0.6875rem;
        margin-bottom: 0;
    }
    .qx-product-price .current {
        font-size: 1rem;
        font-weight: 700;
    }
    .qx-add-btn {
        width: 100%;
        height: 36px;
        font-size: 0.8125rem;
        border-radius: 0.5rem;
    }
    .qx-discount-badge {
        width: 32px;
        height: 32px;
        font-size: 0.5625rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    .qx-product-badge {
        font-size: 0.5625rem;
        padding: 0.1875rem 0.375rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    /* Features - 2 columns */
    .qx-feature-card { padding: 1.5rem; border-radius: 1rem; }
    .qx-feature-icon { width: 64px; height: 64px; font-size: 1.5rem; margin-bottom: 1rem; }
    .qx-feature-number { width: 28px; height: 28px; font-size: 0.6875rem; top: 1rem; right: 1rem; }
    .qx-feature-title { font-size: 1rem; }
    .qx-feature-desc { font-size: 0.8125rem; }

    /* Testimonials */
    .qx-testimonial-card { padding: 1.25rem; }
    .qx-testimonial-text { font-size: 0.9375rem; }
    .qx-testimonial-avatar { width: 40px; height: 40px; font-size: 0.875rem; }
    .qx-testimonial-info h5 { font-size: 0.875rem; }
    .qx-testimonial-badge { font-size: 0.625rem; padding: 0.25rem 0.5rem; }

    /* Stats Counter */
    .qx-stat-big-value { font-size: 2.5rem; }
    .qx-stat-big-label { font-size: 0.8125rem; }

    /* Brands - Scroll */
    .qx-brands-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 2rem;
        -webkit-overflow-scrolling: touch;
    }
    .qx-brand-item i { font-size: 2rem; }
    .qx-brand-item span { font-size: 1rem; }

    /* FAQ */
    .qx-accordion-btn { padding: 1rem 1.25rem; font-size: 0.9375rem; }
    .qx-accordion-num { width: 28px; height: 28px; font-size: 0.6875rem; }
    .qx-accordion-toggle { width: 28px; height: 28px; }
    .qx-accordion-item.active .qx-accordion-body { padding: 0 1.25rem 1.25rem 3.5rem; }
    .qx-accordion-body p { font-size: 0.875rem; }

    /* Newsletter */
    .qx-newsletter-card {
        padding: 2rem 1.25rem;
        border-radius: 1.25rem;
    }
    .qx-newsletter-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .qx-newsletter-title { font-size: 1.5rem; }
    .qx-newsletter-desc { font-size: 0.9375rem; }
    .qx-newsletter-form { flex-direction: column; }
    .qx-newsletter-input {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 1rem;
    }

    /* CTA */
    .qx-cta-card {
        padding: 2rem 1.25rem;
        border-radius: 1.25rem;
    }
    .qx-cta-title { font-size: 1.5rem; }
    .qx-cta-desc { font-size: 1rem; margin-bottom: 1.5rem; }
    .qx-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    /* View All Button */
    .qx-view-all-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .qx-hero-title { font-size: 1.75rem; }
    .qx-section-title { font-size: 1.5rem; }
    .qx-story-ring { width: 56px; height: 56px; }
    .qx-story-avatar { font-size: 1.25rem; }

    /* Even more compact product cards on small screens */
    .qx-product-img, .qx-product-image { height: 85px; }
    .qx-product-body { padding: 0.625rem; }
    .qx-product-title { font-size: 0.75rem; }
    .qx-product-price .current { font-size: 0.9375rem; }
    .qx-add-btn { height: 32px; font-size: 0.75rem; }
    .qx-discount-badge { width: 28px; height: 28px; font-size: 0.5rem; }

    .qx-stat-big-value { font-size: 2rem; }
}

/* Reduced Motion Support & Fallback */
@media (prefers-reduced-motion: reduce) {
    .qx-product-card,
    .qx-feature-card,
    .qx-accordion-item,
    .qx-trust-item,
    .qx-story,
    .qx-testimonial-card,
    .qx-brand-item,
    .qx-stat-big {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Noscript fallback - JS devre dışıysa kartlar görünsün */
.no-js .qx-product-card,
.no-js .qx-feature-card {
    opacity: 1 !important;
    transform: none !important;
}
