body { font-family: 'Inter', sans-serif; }
        .code-font { font-family: 'JetBrains Mono', monospace; }
        .gradient-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .gradient-text { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .digital-vision-text { background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .glow-effect { box-shadow: 0 0 30px rgba(102, 126, 234, 0.3); }
        .pulse-animation { animation: pulse 2s infinite; }
        @keyframes pulse {
          0%, 100% { transform: scale(1); }
          50% { transform: scale(1.05); }
        }
        .float-animation { animation: float 3s ease-in-out infinite; }
        @keyframes float {
          0%, 100% { transform: translateY(0px); }
          50% { transform: translateY(-10px); }
        }
        
        /* Kokonut UI Shape Landing Hero Styles */
        .shape-blob {
            filter: blur(40px);
            mix-blend-mode: overlay;
            will-change: transform;
        }
        
        .shape-purple {
            background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
        }
        
        .shape-blue {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
        }
        
        .shape-pink {
            background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
        }
        
        .animate-blob-slow {
            animation: blob 12s ease-in-out infinite alternate;
        }
        
        .animate-blob-medium {
            animation: blob 8s ease-in-out infinite alternate-reverse;
        }
        
        .animate-blob-fast {
            animation: blob 6s ease-in-out infinite alternate;
        }
        
        @keyframes blob {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(5%, 5%) scale(1.1); }
            50% { transform: translate(0%, 10%) scale(0.9); }
            75% { transform: translate(-5%, 5%) scale(1.05); }
        }
        
        .animate-float-slow {
            animation: float-shape 10s ease-in-out infinite;
        }
        
        .animate-float-medium {
            animation: float-shape 8s ease-in-out infinite 1s;
        }
        
        .animate-float-fast {
            animation: float-shape 6s ease-in-out infinite 0.5s;
        }
        
        @keyframes float-shape {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .animate-fade-in {
            animation: fade-in 1s ease-out forwards;
        }
        
        .animate-fade-in-up {
            animation: fade-in-up 1s ease-out forwards;
            opacity: 0;
        }
        
        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .faq-item input[type="checkbox"] {
            display: none;
        }
        .faq-item-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .faq-item-label::after {
            content: '+';
            font-size: 2rem;
            transition: transform 0.3s ease;
        }
        .faq-item input[type="checkbox"]:checked + .faq-item-label::after {
            transform: rotate(45deg);
        }
        .faq-item-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        }
        .faq-item input[type="checkbox"]:checked ~ .faq-item-content {
            max-height: 200px;
            padding: 0 1rem 1rem 1rem;
        }