        /* Zikoda Why Section - Isolated Styles */
        .zikoda-why-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .zikoda-why-fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: zikodaFadeInUp 0.8s ease-out forwards;
        }
        
        .zikoda-why-fade-delay-1 { animation-delay: 0.2s; }
        .zikoda-why-fade-delay-2 { animation-delay: 0.4s; }
        .zikoda-why-fade-delay-3 { animation-delay: 0.6s; }
        .zikoda-why-fade-delay-4 { animation-delay: 0.8s; }
        .zikoda-why-fade-delay-5 { animation-delay: 1s; }
        .zikoda-why-fade-delay-6 { animation-delay: 1.2s; }
        
        @keyframes zikodaFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes zikodaPulseGlow {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(108,59,196, 0.4);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 0 15px rgba(108,59,196, 0);
                transform: scale(1.05);
            }
        }
        
        .zikoda-why-pulse-glow {
            animation: zikodaPulseGlow 3s infinite;
        }
        
        @keyframes zikodaSlideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes zikodaSlideInRight {
            0% {
                opacity: 0;
                transform: translateX(50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .zikoda-why-slide-left {
            animation: zikodaSlideInLeft 0.8s ease-out forwards;
        }
        
        .zikoda-why-slide-right {
            animation: zikodaSlideInRight 0.8s ease-out forwards;
        }
        
        .zikoda-why-orbit-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin: 0 auto;
        }
        
        .zikoda-why-orbit-item {
            position: absolute;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .zikoda-why-orbit-item:hover {
            transform: scale(1.1);
            z-index: 10;
        }
        
        .zikoda-why-center-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
        }
        
        .zikoda-why-gradient-bg {
            background: linear-gradient(135deg, #6C3BC4 0%, #8A2BE2 100%);
        }
        
        .zikoda-why-hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .zikoda-why-hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(108,59,196, 0.2);
        }
        
        .zikoda-why-tech-glow {
            box-shadow: 0 0 20px rgba(108,59,196, 0.3);
        }
        
        .zikoda-why-feature-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .zikoda-why-feature-card:hover {
            transform: scale(1.02);
        }
        
        .zikoda-why-icon-wrapper {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .zikoda-why-feature-card:hover .zikoda-why-icon-wrapper {
            box-shadow: 0 8px 20px rgba(108,59,196, 0.25);
        }
        
        .zikoda-why-orbit-node {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .zikoda-why-orbit-node:hover {
            box-shadow: 0 8px 25px rgba(108,59,196, 0.3);
        }
        
        @keyframes zikodaRotateOrbit {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .zikoda-why-orbit-ring {
            animation: zikodaRotateOrbit 20s linear infinite;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .zikoda-why-orbit-container {
                width: 300px;
                height: 300px;
            }
            
            .zikoda-why-section .zikoda-why-title {
                font-size: 2.5rem;
            }
            
            .zikoda-why-section .zikoda-why-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 640px) {
            .zikoda-why-orbit-container {
                width: 250px;
                height: 250px;
            }
            
            .zikoda-why-section .zikoda-why-title {
                font-size: 2rem;
            }
        }
        
        /* Brand Colors */
        .zikoda-primary { color: #6C3BC4; }
        .zikoda-accent { color: #FFA500; }
        .zikoda-bg-primary { background-color: #6C3BC4; }
        .zikoda-border-primary { border-color: #6C3BC4; }
        .zikoda-text-primary { color: #6C3BC4; }