 .productivity-hero-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .productivity-hero-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
            height: 100vh;
            background: linear-gradient(to bottom, #1a0b3d 0%, #2d1b69 25%, #4c2a85 50%, #6b3a9a 75%, #8a4baf 100%);
            position: relative;
        }

        .productivity-hero-container {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 20px;
        }

        .productivity-bubble-left,
        .productivity-bubble-right {
                    position: absolute;
                    width: 200px;
                    height: auto;
                    opacity: 0.7;
                    z-index: 1;
                    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                }
        .productivity-bubble-left {
            left: -8%;
            top: 40%;
        }

        .productivity-bubble-right {
            right: -6%;
            top: 20%;
        }

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

        .productivity-hero-content {
            max-width: 800px;
            color: white;
            opacity: 1;
        }

        .productivity-hero-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .productivity-hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.3rem);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .productivity-hero-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 18px 36px;
            font-size: 1.1rem;
            font-weight: 500;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            margin-bottom: 40px;
        }

        .productivity-hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
            background: linear-gradient(135deg, #ff7d47 0%, #f8a432 100%);
        }

        .productivity-hero-btn::after {
            content: '→';
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .productivity-hero-btn:hover::after {
            transform: translateX(5px);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .productivity-hero-container {
                padding: 40px 20px;
            }
            
            .productivity-hero-title {
                margin-bottom: 20px;
            }
            
            .productivity-hero-subtitle {
                margin-bottom: 30px;
                font-size: 1.1rem;
            }
            
            .productivity-hero-btn {
                padding: 16px 32px;
                font-size: 1rem;
            }

            .productivity-bubble-left,
            .productivity-bubble-right {
                width: 120px;
            }
        }

        @media (max-width: 480px) {
            .productivity-hero-subtitle {
                font-size: 1rem;
                line-height: 1.5;
            }
            
            .productivity-hero-btn {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
            
            .productivity-hero-title {
                font-size: 2.2rem;
            }

            .productivity-bubble-left,
            .productivity-bubble-right {
                width: 100px;
            }
        }

        @media (min-width: 1024px) {
            .productivity-hero-title {
                font-size: 4.5rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .productivity-hero-title {
                font-size: 3.5rem;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .productivity-hero-title {
                font-size: 3rem;
            }
        }