
        /* UNIFIED ORANGE THEME */
        :root {
            --orange-primary: #FF6B35;
            --orange-light: rgba(255, 107, 53, 0.1);
            --orange-medium: rgba(255, 107, 53, 0.3);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
        }

        .gradient-orange {
            background: linear-gradient(135deg, var(--orange-primary) 0%, rgba(255, 107, 53, 0.6) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--orange-primary) 0%, #FF8C61 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .bento-card {
            background: white;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease-in-out;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            border: 2px solid var(--orange-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--orange-light);
            pointer-events: none;
            flex-shrink: 0;
        }
        
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .number-highlight {
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            line-height: 0.9;
            color: var(--orange-primary);
            opacity: 0.08;
            position: absolute;
            top: -20px;
            right: 20px;
            z-index: 0;
        }

        .title-main {
            font-size: 3rem !important;
            font-weight: 900 !important;
            line-height: 1.1 !important;
        }
        .title-section {
            font-size: 2.25rem !important;
            font-weight: 900 !important;
        }
        
        @media (min-width: 1024px) {
            .title-main {
                font-size: 4.5rem !important;
            }
            .title-section {
                font-size: 3rem !important;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .text-orange {
             color: var(--orange-primary);
        }
    