/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors */
    --logo-red: #ef4444;
    --logo-orange: #f97316;
    --logo-purple: #8b5cf6;
    
    /* Primary Colors - Based on Logo with More Purple */
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #a855f7;
    --secondary-dark: #9333ea;
    --accent-color: #f97316;
    --accent-dark: #ea580c;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Logo-Based Gradients with More Purple */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #f97316 100%);
    --gradient-secondary: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-hero: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #f97316 100%);
    --gradient-text: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #f97316 100%);
    --gradient-logo: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #f97316 100%);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 20px;
}

.loading-logo-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.loading-logo-block {
    width: 20px;
    height: 50px;
    position: relative;
    transform: skewY(-8deg);
    border-radius: 3px;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo-block-dot {
    content: '';
    position: absolute;
    top: -12px;
    left: 2px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--logo-red), var(--logo-orange), var(--logo-purple));
    border-radius: 50%;
    opacity: 0.7;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo-block.red {
    background: #ef4444;
    animation-delay: 0s;
}

.loading-logo-block.orange {
    background: #f97316;
    animation-delay: 0.3s;
}

.loading-logo-block.purple {
    background: #8b5cf6;
    animation-delay: 0.6s;
}

.loading-logo-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px 3px 0 0;
}

.loading-logo-block::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 3px 3px;
}

@keyframes logoFloat {
    0%, 100% {
        transform: skewY(-8deg) translateY(0px);
    }
    50% {
        transform: skewY(-8deg) translateY(-10px);
    }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.9;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.language-switcher:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 1);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-graphic {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-block {
    width: 12px;
    height: 32px;
    position: relative;
    transform: skewY(-8deg);
    border-radius: 2px;
}

.logo-block-md {
    height: 24px
}

.logo-block-sm {
    height: 16px
}

.logo-block-dot {
    content: '';
    position: absolute;
    top: -12px;
    left: 2px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--logo-red), var(--logo-orange), var(--logo-purple));
    border-radius: 50%;
    opacity: 0.7;
}

.logo-block-dot::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.logo-block.red {
    background: #ef4444;
}

.logo-block.orange {
    background: #f97316;
}

.logo-block.purple {
    background: #8b5cf6;
}

.logo-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px 2px 0 0;
}

.logo-block::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 2px 2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -8px;
    width: 6px;
    height: 6px;
    background: var(--gradient-text);
    border-radius: 50%;
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139,92,246,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(168,85,247,0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139,92,246,0.7), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(168,85,247,0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 25s linear infinite;
}

.hero-particles::after {
    background-image: 
        radial-gradient(1px 1px at 50px 20px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 80px 90px, rgba(168,85,247,0.4), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(139,92,246,0.5), transparent),
        radial-gradient(2px 2px at 150px 10px, rgba(168,85,247,0.8), transparent);
    animation: particleFloat 30s linear infinite reverse;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* ===== ADVANCED HERO ANIMATIONS ===== */

/* 3D Particle System */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(239, 68, 68, 0.3) 0%, transparent 50%);
}

.particle-layer.layer-1 {
    animation: particleFloat1 12s ease-in-out infinite;
    transform: translateZ(0);
}

.particle-layer.layer-2 {
    animation: particleFloat2 15s ease-in-out infinite reverse;
    transform: translateZ(-100px);
    opacity: 0.7;
}

.particle-layer.layer-3 {
    animation: particleFloat3 18s ease-in-out infinite;
    transform: translateZ(-200px);
    opacity: 0.5;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.8; }
    33% { transform: translateY(-30px) scale(1.1) rotate(120deg); opacity: 1; }
    66% { transform: translateY(20px) scale(0.9) rotate(240deg); opacity: 0.6; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translateY(0px) scale(1.2) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-40px) scale(0.8) rotate(180deg); opacity: 0.9; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translateY(0px) scale(0.8) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-25px) scale(1.3) rotate(90deg); opacity: 0.7; }
    75% { transform: translateY(15px) scale(1.1) rotate(270deg); opacity: 0.5; }
}

/* Neural Network Visualization */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 2;
}

.neural-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.neural-nodes .node {
    fill: url(#neuralGradient);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
    animation: neuralPulse 3s ease-in-out infinite;
}

.neural-connections .connection {
    stroke: url(#neuralGradient);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
    animation: neuralFlow 4s linear infinite;
    filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.6));
}

@keyframes neuralPulse {
    0%, 100% { r: 8; opacity: 0.8; }
    50% { r: 12; opacity: 1; }
}

@keyframes neuralFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

/* Floating Code Blocks */
.code-blocks {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.code-block {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: codeFloat 8s ease-in-out infinite;
}

.code-block:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.code-block:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.code-block:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.code-header {
    background: rgba(139, 92, 246, 0.2);
    padding: 8px 12px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-dots {
    display: flex;
    gap: 4px;
}

.code-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.code-dots .dot.red { background: #ef4444; }
.code-dots .dot.yellow { background: #f59e0b; }
.code-dots .dot.green { background: #10b981; }

.code-title {
    color: #e5e7eb;
    font-size: 12px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.code-content {
    padding: 12px;
}

.code-line {
    color: #e5e7eb;
    font-size: 11px;
    font-family: 'Monaco', 'Menlo', monospace;
    margin-bottom: 4px;
    white-space: nowrap;
}

.keyword { color: #f97316; }
.function { color: #8b5cf6; }
.string { color: #10b981; }
.variable { color: #3b82f6; }
.table { color: #f59e0b; }
.column { color: #06b6d4; }
.number { color: #ef4444; }

@keyframes codeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(0.5deg); }
}

/* Holographic Elements */
.holographic-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.holo-ring {
    position: absolute;
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: holoRotate 10s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-duration: 8s;
    border-color: rgba(139, 92, 246, 0.8);
}

.ring-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 12s;
    animation-direction: reverse;
    border-color: rgba(249, 115, 22, 0.6);
}

.ring-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 60%;
    animation-duration: 6s;
    border-color: rgba(239, 68, 68, 0.7);
}

.holo-core {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: holoPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

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

@keyframes holoPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.7; }
}

/* Energy Orbs */
.energy-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
    width: 30px;
    height: 30px;
    top: 15%;
    left: 20%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.9) 0%, transparent 70%);
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.orb-2 {
    width: 25px;
    height: 25px;
    top: 70%;
    right: 25%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.9) 0%, transparent 70%);
    animation-delay: 1.5s;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.orb-3 {
    width: 35px;
    height: 35px;
    top: 45%;
    left: 80%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.9) 0%, transparent 70%);
    animation-delay: 3s;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.orb-4 {
    width: 20px;
    height: 20px;
    top: 25%;
    right: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.9) 0%, transparent 70%);
    animation-delay: 4.5s;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-25px) scale(1.2); opacity: 1; }
}

/* Matrix Data Rain */
.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.rain-column {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 92, 246, 0.8) 50%, transparent 100%);
    animation: matrixRain 3s linear infinite;
}

.rain-column:nth-child(1) { left: 10%; animation-delay: 0s; }
.rain-column:nth-child(2) { left: 30%; animation-delay: 0.6s; }
.rain-column:nth-child(3) { left: 50%; animation-delay: 1.2s; }
.rain-column:nth-child(4) { left: 70%; animation-delay: 1.8s; }
.rain-column:nth-child(5) { left: 90%; animation-delay: 2.4s; }

@keyframes matrixRain {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Morphing Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    animation: shapeMorph 8s ease-in-out infinite;
}

.morphing-cube {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.6), rgba(249, 115, 22, 0.6));
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    border-radius: 8px;
}

.morphing-sphere {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.6), rgba(139, 92, 246, 0.6));
    border-radius: 50%;
    top: 65%;
    right: 20%;
    animation-delay: 2s;
}

.morphing-pyramid {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(249, 115, 22, 0.6);
    top: 40%;
    left: 75%;
    animation-delay: 4s;
}

.morphing-torus {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    top: 80%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes shapeMorph {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(0.8); }
    75% { transform: rotate(270deg) scale(1.1); }
}

/* Advanced Gradient Background */
.hero-gradient-advanced {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(249, 115, 22, 0.1) 50%, rgba(239, 68, 68, 0.1) 100%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Advanced Floating Data Points */
.floating-data-advanced {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.data-point-3d {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: data3dFloat 10s ease-in-out infinite;
}

.data-point-3d:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.data-point-3d:nth-child(2) {
    top: 35%;
    right: 5%;
    animation-delay: 1.5s;
}

.data-point-3d:nth-child(3) {
    top: 55%;
    left: 12%;
    animation-delay: 3s;
}

.data-point-3d:nth-child(4) {
    top: 75%;
    right: 12%;
    animation-delay: 4.5s;
}

.data-point-3d:nth-child(5) {
    top: 25%;
    left: 65%;
    animation-delay: 6s;
}

.data-point-3d:nth-child(6) {
    top: 65%;
    right: 35%;
    animation-delay: 7.5s;
}

.data-icon {
    font-size: 18px;
    animation: iconPulse 2s ease-in-out infinite;
}

.data-text {
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 500;
}

.data-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 12px;
    filter: blur(10px);
    z-index: -1;
    animation: dataGlow 3s ease-in-out infinite;
}

@keyframes data3dFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(10deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes dataGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Advanced Metrics */
.floating-metrics-advanced {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.metric-3d {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: metric3dFloat 12s ease-in-out infinite;
}

.metric-3d:nth-child(1) {
    top: 10%;
    right: 8%;
    animation-delay: 0s;
}

.metric-3d:nth-child(2) {
    top: 45%;
    left: 5%;
    animation-delay: 3s;
}

.metric-3d:nth-child(3) {
    top: 70%;
    right: 5%;
    animation-delay: 6s;
}

.metric-3d:nth-child(4) {
    top: 35%;
    left: 75%;
    animation-delay: 9s;
}

.metric-icon {
    font-size: 20px;
    margin-bottom: 4px;
    animation: metricIconSpin 4s ease-in-out infinite;
}

.metric-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
    border-radius: 16px;
    filter: blur(15px);
    z-index: -1;
    animation: metricPulse 2s ease-in-out infinite;
}

@keyframes metric3dFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-25px) rotateY(5deg); }
}

@keyframes metricIconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes metricPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Advanced Light Rays */
.light-rays-advanced {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.light-ray-advanced {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(139, 92, 246, 0.8) 20%, 
        rgba(249, 115, 22, 0.6) 50%, 
        rgba(239, 68, 68, 0.4) 80%, 
        transparent 100%);
    animation: lightRayAdvanced 6s ease-in-out infinite;
    transform-origin: center;
}

.light-ray-advanced:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.light-ray-advanced:nth-child(2) {
    left: 35%;
    animation-delay: 1.2s;
    transform: rotate(-10deg);
}

.light-ray-advanced:nth-child(3) {
    left: 55%;
    animation-delay: 2.4s;
    transform: rotate(8deg);
}

.light-ray-advanced:nth-child(4) {
    left: 75%;
    animation-delay: 3.6s;
    transform: rotate(-12deg);
}

.light-ray-advanced:nth-child(5) {
    left: 85%;
    animation-delay: 4.8s;
    transform: rotate(5deg);
}

@keyframes lightRayAdvanced {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* Responsive Design for Advanced Animations */
@media (max-width: 768px) {
    /* Hide complex animations on smaller screens for better performance */
    .particle-system,
    .neural-network,
    .code-blocks,
    .holographic-elements,
    .energy-orbs,
    .matrix-rain,
    .geometric-shapes,
    .floating-data-advanced,
    .floating-metrics-advanced,
    .light-rays-advanced {
        display: none;
    }
    
    /* Keep only basic hero gradient for mobile */
    .hero-gradient-advanced {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    /* Further reduce complexity on very small screens */
    .hero-gradient-advanced {
        opacity: 0.3;
    }
}

/* Advanced floating data elements */
.floating-data {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-point {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    animation: dataFloat 15s ease-in-out infinite;
    font-family: 'Courier New', monospace;
}

.data-point:nth-child(1) { border-color: rgba(139, 92, 246, 0.4); }
.data-point:nth-child(2) { border-color: rgba(168, 85, 247, 0.4); }
.data-point:nth-child(3) { border-color: rgba(139, 92, 246, 0.4); }
.data-point:nth-child(4) { border-color: rgba(168, 85, 247, 0.4); }
.data-point:nth-child(5) { border-color: rgba(139, 92, 246, 0.4); }

.data-point:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.data-point:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.data-point:nth-child(3) {
    top: 40%;
    left: 5%;
    animation-delay: 6s;
}

.data-point:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: 9s;
}

.data-point:nth-child(5) {
    top: 15%;
    right: 35%;
    animation-delay: 12s;
}

@keyframes dataFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) rotate(1deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) rotate(-1deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) rotate(0.5deg); 
        opacity: 0.9;
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: heroBadgeReveal 1s ease-out 0.1s forwards;
}

@keyframes heroBadgeReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleReveal 1.2s ease-out 0.3s forwards;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateX(-50px);
    animation: titleLineSlide 1s ease-out forwards;
}

.title-line:first-child {
    animation-delay: 0.5s;
}

.title-line:last-child {
    animation-delay: 0.8s;
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleLineSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightPulse 3s ease-in-out infinite;
    position: relative;
}

.highlight::after {
    content: '|';
    color: #8b5cf6;
    animation: blink 1s infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes highlightPulse {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

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

/* Professional typing animation */
.typing-animation {
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.7); }
}

/* Professional skill indicators */
.skill-indicators {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(185, 185, 185, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(115, 115, 115, 0.4);
    opacity: 0;
    transform: translateX(50px);
    animation: skillReveal 0.8s ease-out forwards;
}

.skill-item:nth-child(1) { animation-delay: 2s; }
.skill-item:nth-child(2) { animation-delay: 2.3s; }
.skill-item:nth-child(3) { animation-delay: 2.6s; }
.skill-item:nth-child(4) { animation-delay: 2.9s; }

@keyframes skillReveal {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.skill-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 6px;
    color: white;
    font-size: 12px;
}

.skill-text {
    color: #494747;
    font-size: 0.9rem;
    font-weight: 700;
}

.skill-progress {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    animation: skillProgress 2s ease-out 3s forwards;
}

.skill-item:nth-child(1) .skill-progress::after { animation-delay: 3s; }
.skill-item:nth-child(2) .skill-progress::after { animation-delay: 3.3s; }
.skill-item:nth-child(3) .skill-progress::after { animation-delay: 3.6s; }
.skill-item:nth-child(4) .skill-progress::after { animation-delay: 3.9s; }

@keyframes skillProgress {
    0% { left: -100%; }
    100% { left: 0; }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: heroDescriptionReveal 1.2s ease-out 1s forwards;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 25px;
}

@keyframes heroDescriptionReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroStatsReveal 1s ease-out 1.3s forwards;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: statReveal 0.8s ease-out forwards;
}

.stat:nth-child(1) {
    animation-delay: 1.5s;
}

.stat:nth-child(2) {
    animation-delay: 1.7s;
}

.stat:nth-child(3) {
    animation-delay: 1.9s;
}

@keyframes heroStatsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-container {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    opacity: 0;
    animation: dashboardReveal 2s ease-out 1.5s forwards;
}

.dashboard-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

@keyframes dashboardReveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-20deg) rotateX(10deg) translateZ(50px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: perspective(1000px) rotateY(-15deg) rotateX(8deg) translateZ(25px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateZ(0) scale(1);
    }
}

/* Advanced floating metrics */
.floating-metrics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.metric-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    animation: metricFloat 2s ease-out forwards;
}

.metric-float:nth-child(1) { border-color: rgba(139, 92, 246, 0.4); }
.metric-float:nth-child(2) { border-color: rgba(168, 85, 247, 0.4); }
.metric-float:nth-child(3) { border-color: rgba(139, 92, 246, 0.4); }
.metric-float:nth-child(4) { border-color: rgba(168, 85, 247, 0.4); }

.metric-float:nth-child(1) {
    top: 15%;
    left: 68%;
    animation-delay: 2.5s;
}

.metric-float:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: 3s;
}

.metric-float:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 3.5s;
}

.metric-float:nth-child(4) {
    bottom: 35%;
    right: 8%;
    animation-delay: 4s;
}

@keyframes metricFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    display: block;
}

.metric-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Professional light rays */
.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.6), transparent);
    transform-origin: bottom;
    opacity: 0;
    animation: lightRay 4s ease-in-out infinite;
}

.light-ray:nth-child(1) {
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.light-ray:nth-child(2) {
    background: linear-gradient(to bottom, transparent, rgba(168, 85, 247, 0.6), transparent);
}

.light-ray:nth-child(3) {
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.light-ray:nth-child(1) {
    left: 20%;
    animation-delay: 1s;
}

.light-ray:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.light-ray:nth-child(3) {
    right: 20%;
    animation-delay: 3s;
}

@keyframes lightRay {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scaleY(1) rotate(5deg);
    }
}

.dashboard-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    background: var(--bg-secondary);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #f59e0b; }
.control-dot.green { background: #10b981; }

.dashboard-title {
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-content {
    padding: 24px;
}

.chart-section {
    margin-bottom: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-header h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.trend-up {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.chart-container {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,80 Q30,20 50,50 T90,30" stroke="white" stroke-width="2" fill="none" opacity="0.3"/><circle cx="10" cy="80" r="2" fill="white" opacity="0.5"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.5"/><circle cx="90" cy="30" r="2" fill="white" opacity="0.5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 4s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.scroll-arrow:active {
    transform: scale(0.95);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 40px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-tertiary);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-features span {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 140px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products .section-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.3);
    animation: float 6s ease-in-out infinite;
}

.products .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.products .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 80px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.product-image {
    height: 360px;
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.1) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(120, 119, 198, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.product-mockup {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(8deg) translateZ(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.product-card:hover .product-mockup {
    transform: perspective(1200px) rotateY(-3deg) rotateX(3deg) translateZ(40px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mockup-header {
    background: var(--bg-secondary);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots .dot.red { background: #ef4444; }
.mockup-dots .dot.yellow { background: #f59e0b; }
.mockup-dots .dot.green { background: #10b981; }

.mockup-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-content {
    padding: 20px;
}

/* WIAIPMS Mockup */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dashboard-widget {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border-color);
}

.dashboard-widget.widget-1 {
    grid-column: 1 / -1;
}

.widget-header {
    margin-bottom: 8px;
}

.widget-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.widget-chart {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px;
    min-height: 8px;
    animation: growUp 1s ease-out;
    color: #c1c1c1;
    font-weight: 700;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }

.performance-metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    /* color: var(--secondary-color); */
    color: #c18bf5;
}

.metric-label {
    font-size: 10px;
    /* color: var(--text-secondary); */
    color: #ffffff;
}

.ai-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--primary-color);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Wizlevelup Mockup */
.platform-overview {
    text-align: center;
}

.platform-header {
    margin-bottom: 16px;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-circle {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.feature-card .feature-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.feature-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-status {
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.product-content {
    padding: 50px 50px 50px 50px;
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(120, 119, 198, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 3s ease-in-out infinite;
}

.product-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.1rem;
    font-weight: 400;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(120, 119, 198, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(120, 119, 198, 0.1);
    transition: all 0.3s ease;
}

.product-features .feature-item:hover {
    background: rgba(120, 119, 198, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 119, 198, 0.15);
}

.product-features .feature-item i {
    color: var(--secondary-color);
    font-size: 18px;
    min-width: 20px;
}

.product-features .feature-item span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.product-cta {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05), rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

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

.product-cta h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-cta p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.platform-intro {
    margin-bottom: 32px;
}

.intro-section {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    text-align: center;
}

.intro-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.intro-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.wizgranny-highlight {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wizgranny-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05), rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.wizgranny-badge {
    margin-bottom: 16px;
}

.wizgranny-badge span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(120, 119, 198, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.wizgranny-highlight p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 160px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.product-actions .btn:hover::before {
    left: 100%;
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 24px rgba(120, 119, 198, 0.4);
}

.product-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(120, 119, 198, 0.5);
}

.product-actions .btn-secondary {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.product-actions .btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-primary);
}

.features-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    background: var(--bg-secondary);
    padding: 8px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tab-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-secondary);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-content.active {
    display: grid;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-meter {
    position: relative;
}

.meter-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--secondary-color) 0deg 324deg, var(--border-light) 324deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.meter-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
}

.meter-value {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.integration-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    z-index: 2;
}

.integration-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connector {
    position: absolute;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.connector:nth-child(1) {
    top: 20%;
    left: 10%;
}

.connector:nth-child(2) {
    top: 10%;
    right: 20%;
}

.connector:nth-child(3) {
    bottom: 20%;
    left: 15%;
}

.connector:nth-child(4) {
    bottom: 10%;
    right: 10%;
}

.scalability-chart {
    display: flex;
    align-items: end;
    gap: 20px;
    height: 200px;
}

.chart-bar {
    width: 60px;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: var(--transition);
    animation: growUp 1s ease-out;
}

.chart-bar[data-value="20"] {
    height: 40px;
    animation-delay: 0.1s;
}

.chart-bar[data-value="60"] {
    height: 120px;
    animation-delay: 0.2s;
}

.chart-bar[data-value="100"] {
    height: 200px;
    animation-delay: 0.3s;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.feature-benefits li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Integration Diagram Styles */
.integration-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.center-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--logo-purple), var(--logo-orange), var(--logo-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    animation: centerPulse 3s ease-in-out infinite;
}

.center-icon i {
    font-size: 32px;
    color: white;
    animation: rotate 8s linear infinite;
}

.center-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
}

.integration-connectors {
    position: relative;
    width: 100%;
    height: 100%;
}

.connector {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.connector:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.2s;
}

.connector:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 0.4s;
}

.connector:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.connector:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.connector:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--logo-purple);
}

.connector-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.connector[data-tool="Salesforce"] .connector-icon {
    background: linear-gradient(135deg, #00a1e0, #1ab7ea);
    color: white;
}

.connector[data-tool="Google Analytics"] .connector-icon {
    background: linear-gradient(135deg, #fbbc04, #ea4335);
    color: white;
}

.connector[data-tool="AWS"] .connector-icon {
    background: linear-gradient(135deg, #ff9900, #232f3e);
    color: white;
}

.connector[data-tool="Microsoft"] .connector-icon {
    background: linear-gradient(135deg, #00bcf2, #0078d4);
    color: white;
}

.connector span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, var(--logo-purple), var(--logo-orange));
    height: 2px;
    opacity: 0;
    animation: drawLine 1.2s ease-out forwards;
}

.line-1 {
    top: 120px;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.line-2 {
    top: 50%;
    right: 120px;
    width: 0;
    transform: translateY(-50%);
    animation-delay: 1.2s;
}

.line-3 {
    bottom: 120px;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

.line-4 {
    top: 50%;
    left: 120px;
    width: 0;
    transform: translateY(-50%);
    animation-delay: 1.6s;
}

/* Animations */
@keyframes centerPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 0.6;
    }
}

/* Locations Section */
.locations {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.location-flag {
    font-size: 2.5rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.location-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.location-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail i {
    color: var(--primary-color);
    width: 16px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: transparent;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 20px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 8px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-full:active {
    transform: translateY(0);
}

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

.btn-full:hover i {
    transform: translateX(4px);
}

/* Contact form button specific styling */
.contact-form .btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Spinner for form submission */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Footer */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 80px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-logo .logo-text::after {
    background: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    /* color: var(--primary-color); */
    color: #ffffff;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Cookies Consent Banner */
.cookies-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    padding: 20px;
}

.cookies-consent.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.cookies-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--logo-red), var(--logo-orange), var(--logo-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cookies-text {
    flex: 1;
    color: var(--text-dark);
}

.cookies-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.cookies-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookies-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.decline-btn {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.decline-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--logo-purple);
    border-color: var(--logo-purple);
}

.accept-btn {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Close Button */
.cookies-close-btn {
    position: absolute;
    top: -33px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(107, 114, 128, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 14px;
    z-index: 1;
}

.cookies-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

.cookies-close-btn:active {
    transform: scale(0.95);
}

/* Mobile Cookies Consent */
@media (max-width: 768px) {
    .cookies-consent {
        padding: 15px;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookies-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .cookies-text h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .cookies-text p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .cookies-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookies-btn {
        flex: 1;
        max-width: 100px;
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .cookies-close-btn {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* Mobile Integration Diagram */
    .integration-diagram {
        width: 300px;
        height: 300px;
    }
    
    .center-icon {
        width: 60px;
        height: 60px;
    }
    
    .center-icon i {
        font-size: 24px;
    }
    
    .center-label {
        font-size: 14px;
    }
    
    .connector {
        width: 80px;
        height: 80px;
    }
    
    .connector-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .connector span {
        font-size: 10px;
    }
    
    .line-1 {
        top: 100px;
    }
    
    .line-2 {
        right: 100px;
    }
    
    .line-3 {
        bottom: 100px;
    }
    
    .line-4 {
        left: 100px;
    }
    
    /* Mobile Scroll Arrow */
    .scroll-arrow {
        padding: 8px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .hero-container {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .cookies-consent {
        padding: 12px;
    }

    .cookies-btn {
        max-width: 90px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .cookies-text h4 {
        font-size: 13px;
    }

    .cookies-text p {
        font-size: 11px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 15px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }

    .dashboard-container {
        transform: none;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Hide scroll indicator on tablet and below */
    .scroll-indicator {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products .section-title {
        font-size: 2.5rem;
    }

    .products .section-subtitle {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-image {
        height: 280px;
        padding: 30px;
    }

    .product-mockup {
        max-width: 320px;
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateZ(10px);
    }

    .product-content {
        padding: 40px 30px;
    }

    .product-card h3 {
        font-size: 2rem;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-cta {
        padding: 20px;
        margin-bottom: 24px;
    }

    .product-cta h4 {
        font-size: 1.1rem;
    }

    .product-cta p {
        font-size: 0.9rem;
    }

    .intro-section {
        padding: 16px;
        margin-bottom: 20px;
    }

    .intro-section h4 {
        font-size: 1.2rem;
    }

    .intro-section p {
        font-size: 0.95rem;
    }

    .wizgranny-highlight {
        padding: 20px;
    }

    .wizgranny-badge span {
        font-size: 13px;
        padding: 6px 16px;
    }

    .wizgranny-highlight p {
        font-size: 0.95rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 16px;
    }

    .product-actions .btn {
        min-width: auto;
    }

    .showcase-tabs {
        flex-direction: column;
    }

    .tab-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .location-card {
        padding: 16px;
    }
    
    .location-content h3 {
        font-size: 1.1rem;
    }
    
    .location-content p {
        font-size: 0.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .language-switcher {
        bottom: 15px;
        right: 15px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 30px;
    }

    .hero-container {
        padding: 0 10px;
        gap: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-visual {
        margin-bottom: 15px;
    }

    .dashboard-container {
        max-width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

    .dashboard-container {
        transform: none;
    }
    
    .skill-indicators {
        display: none;
    }
    
    .floating-data {
        display: none;
    }
    
    .floating-metrics {
        display: none;
    }
    
    .light-rays {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.hero-stats{
    display: none;
}
