        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+HK:wght@400;600&display=swap');
        
        *{
            box-sizing: border-box;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #000000;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #ffffff;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #e0e0e0;
        }
        
        /* Selection styling */
        ::selection {
            background: #ffffff;
            color: #000000;
        }

        /* Industry-specific styling */
        .industry-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: left;
        }

        .industry-badge i {
            font-size: 1.1rem;
        }

        /* Video Showcase Section */
        .video-showcase {
            padding: 5rem 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            position: relative;
        }

        .video-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
            pointer-events: none;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .video-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .video-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .video-player {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            cursor: pointer;
        }

        .video-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .play-button {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .play-button:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
        }

        .play-button i {
            font-size: 2rem;
            color: #000;
            margin-left: 4px;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-info h3 {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .video-info p {
            color: #d0d0d0;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .video-stats {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
        }

        .video-stats span {
            color: #b0b0b0;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .video-stats i {
            color: #ff6b6b;
        }

        .video-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .video-cta .cta-text {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .video-cta .btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .video-cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 1200px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .video-player {
                height: 300px;
            }

            .play-button {
                width: 60px;
                height: 60px;
            }

            .play-button i {
                font-size: 1.5rem;
            }

            .video-info {
                padding: 1rem;
            }

            .video-info h3 {
                font-size: 1.1rem;
            }

            .video-stats {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

/* Industry-specific hero sections - Further reduced height for better flow */
.restaurant-hero,
.jewelry-hero,
.real-estate-hero,
.small-business-hero,
.beauty-salon-hero,
.insurance-hero {
    padding: 3rem 0 2rem 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: #000000;
    position: relative;
}

        .restaurant-hero .container,
        .jewelry-hero .container,
        .real-estate-hero .container,
        .small-business-hero .container,
        .beauty-salon-hero .container,
        .insurance-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .restaurant-hero .hero-content,
        .jewelry-hero .hero-content,
        .real-estate-hero .hero-content,
        .small-business-hero .hero-content,
        .beauty-salon-hero .hero-content,
        .insurance-hero .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .restaurant-hero .hero-title,
        .jewelry-hero .hero-title,
        .real-estate-hero .hero-title,
        .small-business-hero .hero-title,
        .beauty-salon-hero .hero-title,
        .insurance-hero .hero-title {
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #ffffff;
            font-family: 'Noto Serif HK', serif;
            text-align: left;
        }

        .restaurant-hero .hero-subtitle,
        .jewelry-hero .hero-subtitle,
        .real-estate-hero .hero-subtitle,
        .small-business-hero .hero-subtitle,
        .beauty-salon-hero .hero-subtitle,
        .insurance-hero .hero-subtitle {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
            max-width: 600px;
            text-align: left;
        }

        .restaurant-hero .hero-cta,
        .jewelry-hero .hero-cta,
        .real-estate-hero .hero-cta,
        .small-business-hero .hero-cta,
        .beauty-salon-hero .hero-cta,
        .insurance-hero .hero-cta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        /* Industry-specific styles */
        .jewelry-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 3rem 0 2rem 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
        }

        .jewelry-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
        }

        .jewelry-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
            height: 300px;
        }

        .jewelry-item {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
        }

        .jewelry-item:nth-child(2) {
            animation-delay: -1s;
            background: linear-gradient(45deg, #9370db, #ba55d3);
        }

        .jewelry-item:nth-child(3) {
            animation-delay: -2s;
            background: linear-gradient(45deg, #ff69b4, #ff1493);
        }

        .jewelry-glow {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            animation: pulse 2s ease-in-out infinite;
        }

        /* Real Estate-specific styles */
        .real-estate-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 3rem 0 2rem 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
        }

        .real-estate-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .real-estate-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Small Business-specific styles */
        .small-business-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 3rem 0 2rem 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
        }

        .small-business-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .small-business-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Beauty Salon-specific styles */
        .beauty-salon-hero {
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f8b500 100%);
            padding: 3rem 0 2rem 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
        }

        .beauty-salon-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(248, 181, 0, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .beauty-salon-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Insurance-specific styles */
        .insurance-hero {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4facfe 100%);
            padding: 3rem 0 2rem 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
        }

        .insurance-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(30, 60, 114, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .insurance-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Beauty Salon Showcase */
        .beauty-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
            height: 300px;
        }

        .beauty-item {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b9d, #ff1493);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
            font-size: 2rem;
            color: white;
        }

        .beauty-item:nth-child(2) {
            animation-delay: -1s;
            background: linear-gradient(45deg, #c44569, #f8b500);
        }

        .beauty-item:nth-child(3) {
            animation-delay: -2s;
            background: linear-gradient(45deg, #ff69b4, #ffd700);
        }

        .beauty-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            filter: blur(20px);
            opacity: 0.7;
            z-index: -1;
        }

        /* Insurance Showcase */
        .insurance-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
            height: 300px;
        }

        .insurance-item {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
            font-size: 2rem;
            color: white;
        }

        .insurance-item:nth-child(2) {
            animation-delay: -1s;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }

        .insurance-item:nth-child(3) {
            animation-delay: -2s;
            background: linear-gradient(45deg, #2a5298, #1e3c72);
        }

        .insurance-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            filter: blur(20px);
            opacity: 0.7;
            z-index: -1;
        }

        /* Small Business Showcase */
        .business-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
            height: 300px;
        }

        .business-item {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
            font-size: 2rem;
            color: white;
        }

        .business-item:nth-child(2) {
            animation-delay: -1s;
            background: linear-gradient(45deg, #10b981, #059669);
        }

        .business-item:nth-child(3) {
            animation-delay: -2s;
            background: linear-gradient(45deg, #f59e0b, #d97706);
        }

        .business-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            filter: blur(20px);
            opacity: 0.7;
            z-index: -1;
        }

        /* Restaurant-specific styles */
        .restaurant-hero {
            background: linear-gradient(135deg, #2c1810 0%, #3d2817 50%, #4a3429 100%);
            padding: 3rem 0 2rem 0;
            min-height: 40vh;
            position: relative;
            overflow: hidden;
        }

        .restaurant-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
        }

        .restaurant-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
            height: 300px;
        }

        .food-item {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounce 2s ease-in-out infinite;
        }

        .food-item.pizza {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
        }

        .food-item.burger {
            background: linear-gradient(45deg, #8b4513, #a0522d);
            animation-delay: -0.5s;
        }

        .food-item.sushi {
            background: linear-gradient(45deg, #ff1744, #e91e63);
            animation-delay: -1s;
        }

        .food-glow {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            animation: glow 3s ease-in-out infinite;
        }

        /* Industry-specific feature cards */
        .jewelry-card {
            border-left: 4px solid #ffd700;
        }

        .restaurant-card {
            border-left: 4px solid #ff6b35;
        }

        .jewelry-plan {
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .restaurant-plan {
            border: 2px solid rgba(255, 107, 53, 0.2);
        }


        .gpt-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .gpt-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .gpt-feature {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gpt-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
        }

        .gpt-cta {
            text-align: center;
        }


        .gpt-note {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .gpt-header-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #10b981, #059669);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .gpt-header-badge i {
            font-size: 1.1rem;
        }

        .gpt-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .gpt-stats .stat {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 100px;
        }

        .gpt-stats .number {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #10b981;
            margin-bottom: 0.25rem;
        }

        .gpt-stats .label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gpt-interface-preview {
            background: #000000;
            border: 1px solid #333333;
            border-radius: 12px;
            padding: 1.5rem;
            height: 400px;
            overflow-y: auto;
        }

        .chat-preview {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-message {
            max-width: 80%;
            padding: 1rem;
            border-radius: 12px;
            animation: slideIn 0.5s ease-out;
        }

        .chat-message.bot {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            align-self: flex-start;
        }

        .chat-message.user {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            align-self: flex-end;
        }

        .message-content {
            font-size: 0.9rem;
            line-height: 1.4;
        }

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

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

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

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

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Mobile responsiveness for new sections */
        @media (max-width: 768px) {
            .gpt-showcase {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .gpt-features {
                grid-template-columns: 1fr;
            }

            .jewelry-showcase,
            .restaurant-showcase,
            .beauty-showcase,
            .insurance-showcase,
            .business-showcase {
                height: 200px;
                gap: 1rem;
            }

            .jewelry-item,
            .food-item,
            .beauty-item,
            .insurance-item,
            .business-item {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .gpt-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .gpt-stats .stat {
                min-width: auto;
            }
        }
        
        /* Focus outline for accessibility */
        *:focus {
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }
        
        :root{
            --main-color: #ffffff;
            --primary-color: #000000;
            --accent-color: #333333;
            --dark-bg: #000000;
            --darker-bg: #000000;
            --card-bg: #222222;
            --border-color: #444444;
            --text-primary: #ffffff;
            --text-secondary: #e0e0e0;
            --text-muted: #cccccc;
            --button-bg: #333333;
            --button-hover: #444444;
        }
        
        body{
            height: 100%;
            width: 100%;
            background: #000000;
            background-attachment: fixed;
            overflow-x: hidden;
            color: var(--text-primary);
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
            position: relative;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        a{
            text-decoration: none;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: #000000;
            border-bottom: 1px solid #333333;
            transition: transform 0.3s ease;
        }
        
        .header.hidden {
            transform: translateY(-100%);
        }
        
        /* Ensure smooth header transitions */
        .header * {
            transition: all 0.3s ease;
        }
        
        /* Adjust mobile header behavior */
        @media (max-width: 768px) {
            .header {
                transition: transform 0.4s ease;
            }
            
            body {
                padding-top: 70px; /* Slightly less padding on mobile */
            }
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
                .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 2px;
            font-family: 'Arial', sans-serif;
            margin-left: 37.8px; /* 1cm to the right */
        }

        .header-logo {
            height: 40px;
            width: auto;
            object-fit: contain;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-link {
            color: #e0e0e0;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-family: 'Arial', sans-serif;
        }
        
        .nav-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Navigation Dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-btn {
            background: none;
            border: none;
            color: #e0e0e0;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: inherit;
            font-size: inherit;
        }

        .nav-dropdown-btn:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-dropdown-btn i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover .nav-dropdown-btn i {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #000000;
            border: 1px solid #333333;
            border-radius: 8px;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-link {
            display: block;
            padding: 0.75rem 1rem;
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 4px;
            margin: 0.25rem;
        }

        .nav-dropdown-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-dropdown-link:first-child {
            margin-top: 0.5rem;
        }

        .nav-dropdown-link:last-child {
            margin-bottom: 0.5rem;
        }

        
        .nav-cta {
            background: #333333;
            color: #ffffff;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Arial', sans-serif;
        }
        
        .nav-cta:hover {
            background: #444444;
            transform: translateY(-2px);
        }
        
        .nav-toggle {
            display: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Language Switcher */
        .language-switcher {
            margin-left: 2rem;
            position: relative;
        }
        
        .lang-dropdown {
            position: relative;
        }
        
        .lang-dropdown-btn {
            background: transparent;
            border: 1px solid #444444;
            color: #e0e0e0;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: 80px;
            justify-content: space-between;
            min-height: 44px;
            font-family: 'Arial', sans-serif;
        }
        
        .lang-dropdown-btn:hover {
            border-color: #ffffff;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .lang-dropdown-btn i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }
        
        .lang-dropdown.active .lang-dropdown-btn i {
            transform: rotate(180deg);
        }
        
        .lang-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: #222222;
            border: 1px solid #444444;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            margin-top: 0.5rem;
        }
        
        .lang-dropdown.active .lang-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .lang-option {
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-bottom: 1px solid #444444;
            min-height: 44px;
            color: #ffffff;
            font-family: 'Arial', sans-serif;
        }
        
        .lang-option:last-child {
            border-bottom: none;
        }
        
        .lang-option:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
        
        .lang-option.active {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }
        
        .lang-code {
            font-weight: 600;
            font-size: 0.875rem;
            min-width: 30px;
        }
        
        .lang-name {
            font-size: 0.875rem;
            color: #e0e0e0;
        }
        
        .lang-option:hover .lang-name,
        .lang-option.active .lang-name {
            color: #ffffff;
        }
        
        /* Hero Section */
        .hero {
            padding: 6rem 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: #000000;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #ffffff;
            font-family: 'Noto Serif HK', serif;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .stat {
            color: #ffffff;
            font-weight: 400;
            font-family: 'Noto Serif HK', serif;
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
                .hero-img {
            max-width: 100%;
            height: auto;
            transition: all 0.3s ease;
        }

        .hero-img:hover {
            transform: scale(1.05);
        }

        .hero-img.cdm-logo {
            max-width: 400px;
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        /* Trust Bar */
        .trust-bar {
            padding: 2rem 0;
            text-align: center;
            background: #000000;
            border-top: 1px solid #333333;
            border-bottom: 1px solid #333333;
        }
        
        .trust-text {
            color: #e0e0e0;
            font-size: 1.1rem;
            font-weight: 400;
            font-family: 'Noto Serif HK', serif;
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            min-height: 44px;
            min-width: 44px;
            font-family: 'Noto Serif HK', serif;
        }
        
        .btn-primary {
            background: #333333;
            color: #ffffff;
        }
        
        .btn-primary:hover {
            background: #444444;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }
        
        .btn-secondary:hover {
            background: #ffffff;
            color: #000000;
        }
        
        /* Features Section */
        .features {
            padding: 6rem 0;
            background: #000000;
            margin-bottom: 2rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: #222222;
            border: 1px solid #444444;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #ffffff;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: #333333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #ffffff;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        .feature-description {
            color: #e0e0e0;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        /* Services Section */
        .services {
            padding: 6rem 0;
            background: #000000;
        }
        
        /* Services Accordion */
        .services-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            background: #222222;
            border: 1px solid #444444;
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            border-color: #666666;
        }
        
        .accordion-item.active {
            border-color: #ffffff;
        }
        
        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #222222;
        }
        
        .accordion-header:hover {
            background: #2a2a2a;
        }
        
        .accordion-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            font-family: 'Noto Serif HK', serif;
        }
        
        .accordion-title i {
            width: 40px;
            height: 40px;
            background: #333333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #ffffff;
        }
        
        .accordion-icon {
            font-size: 1.25rem;
            color: #ffffff;
            transition: transform 0.3s ease;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #1a1a1a;
        }
        
        .accordion-content p {
            color: #e0e0e0;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
            margin: 0;
            padding: 0 2rem 1rem;
        }
        
        .service-features {
            padding: 0 2rem 1.5rem;
        }
        
        .service-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-features li {
            color: #cccccc;
            padding: 0.5rem 0;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .service-features li:before {
            content: "•";
            color: #ffffff;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* AI Badge in Accordion */
        .accordion-header .ai-badge {
            margin: 0;
            margin-left: auto;
            margin-right: 1rem;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: #000000;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-cta {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-text {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
        }

        /* Industry-Specific Pricing Sections */
        .beauty-salon-pricing,
        .insurance-pricing,
        .small-business-pricing {
            padding: 6rem 0;
            background: #000000;
        }

        /* Restaurant AI Analyzer Page Spacing */
        .restaurant-gm-hero {
            padding: 4rem 0 3rem 0;
            margin-bottom: 2rem;
        }

        .analyzer-section {
            padding: 3rem 0;
            margin-bottom: 3rem;
            background: #111111;
            border-radius: 16px;
            margin-left: 2rem;
            margin-right: 2rem;
        }

        .gm-ai-features {
            padding: 4rem 0;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .gm-ai-cta {
            padding: 3rem 0;
            margin-top: 2rem;
        }

        /* Analyzer Results Spacing */
        .restaurant-info {
            margin-top: 2rem;
            margin-bottom: 2rem;
            padding: 2rem;
            background: #1a1a1a;
            border-radius: 12px;
            border: 1px solid #333333;
        }

        #analysisResults {
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .analysis-card {
            margin-bottom: 1.5rem;
        }

        .search-section {
            margin-bottom: 2rem;
        }
        
        .plan-card {
            background: #222222;
            border: 1px solid #444444;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .plan-card.featured {
            border-color: #ffffff;
        }
        
        .plan-card:hover {
            transform: translateY(-5px);
            border-color: #ffffff;
        }
        
        .plan-header {
            margin-bottom: 2rem;
        }
        
        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        .plan-price {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            font-family: 'Noto Serif HK', serif;
        }
        
        .period {
            color: #e0e0e0;
            font-size: 1rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .price-note {
            color: #ffffff;
            font-size: 0.875rem;
            font-weight: 400;
            margin-top: 0.5rem;
            text-align: center;
            font-style: italic;
            font-family: 'Noto Serif HK', serif;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            text-align: left;
        }
        
        .plan-features li {
            color: #e0e0e0;
            padding: 0.5rem 0;
            border-bottom: 1px solid #444444;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .pricing .plan-features li::before {
            content: "✓";
            color: #ffffff;
            margin-right: 0.75rem;
            font-weight: bold;
        }
        
        /* About Section */
        .about {
            padding: 6rem 0;
            background: #000000;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-description {
            font-size: 1.25rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .about-features {
            list-style: none;
            padding: 0;
        }
        
        .about-features li {
            color: #e0e0e0;
            padding: 0.5rem 0;
            font-size: 1.1rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .about-features li::before {
            content: "→";
            color: #ffffff;
            margin-right: 0.75rem;
            font-weight: bold;
        }
        
        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .about-img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .about-img:hover {
            transform: scale(1.02);
        }
        
        /* Why Choose Us Section */
        .why-choose {
            padding: 6rem 0;
            background: #000000;
        }
        
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .why-choose-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .why-choose-icon {
            width: 60px;
            height: 60px;
            background: #333333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: #ffffff;
        }
        
        .why-choose-item h3 {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 600;
        }
        
        .why-choose-item p {
            color: #e0e0e0;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .why-choose-cta {
            text-align: center;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 6rem 0;
            background: #000000;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: #222222;
            border: 1px solid #444444;
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: #ffffff;
        }
        
        .testimonial-content p {
            font-size: 1.25rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-style: italic;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .testimonial-author strong {
            color: #ffffff;
            font-size: 1.1rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 600;
        }
        
        .testimonial-author span {
            color: #e0e0e0;
            font-size: 0.9rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: #000000;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-subtitle {
            font-size: 1.25rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #e0e0e0;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .contact-item i {
            color: #ffffff;
            width: 20px;
        }
        
        .contact-form {
            background: #222222;
            border: 1px solid #444444;
            border-radius: 16px;
            padding: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid #444444;
            border-radius: 8px;
            background: #333333;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            min-height: 44px;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #ffffff;
            outline: none;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Form Message Styles */
        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }
        
        .form-message.success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid #22c55e;
            color: #22c55e;
        }
        
        .form-message.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #ef4444;
            color: #ef4444;
        }
        
        /* Newsletter Section */
        .newsletter {
            padding: 4rem 0;
            background: #000000;
            border-top: 1px solid #333333;
        }
        
        .newsletter-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        .newsletter-subtitle {
            font-size: 1.25rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .newsletter-input {
            display: flex;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .newsletter-input input {
            flex: 1;
            padding: 0.875rem;
            border: 1px solid #444444;
            border-radius: 8px;
            background: #333333;
            color: #ffffff;
            font-size: 1rem;
            min-height: 44px;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .newsletter-input input:focus {
            border-color: #ffffff;
            outline: none;
        }
        
        /* Footer */
        .footer {
            padding: 4rem 0 2rem;
            background: #000000;
            border-top: 1px solid #333333;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 600;
        }
        
        .footer-brand p {
            color: #e0e0e0;
            font-size: 1.1rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .footer-column h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-family: 'Noto Serif HK', serif;
            font-weight: 600;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            transition: color 0.3s ease;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .footer-column ul li a:hover {
            color: #ffffff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333333;
            color: #e0e0e0;
            font-family: 'Arial', sans-serif;
        }
        
        /* Problem & Solution Section */
        .problem-solution {
            padding: 6rem 0;
            background: #000000;
        }
        
        .problem-solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .problem-section h2,
        .solution-section h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        .problem-section p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .solution-section ul {
            list-style: none;
            padding: 0;
        }
        
        .solution-section li {
            color: #ffffff;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        .solution-section li:first-child {
            margin-bottom: 1rem;
        }
        
        /* Mission Vision Section */
        .mission-vision {
            padding: 6rem 0;
            background: #000000;
        }
        
        .mission-vision-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .mission-vision-header h1 {
            font-size: 3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .mission-vision-item {
            background: #222222;
            padding: 2rem;
            text-align: center;
            border-radius: 8px;
        }
        
        .mission-vision-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Noto Serif HK', serif;
        }
        
        .mission-vision-item p {
            color: #e0e0e0;
            line-height: 1.6;
            font-family: 'Noto Serif HK', serif;
            font-weight: 400;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
            
            /* Mobile Dark Theme - Consistent with Desktop */
            body {
                background: #000000;
                color: #ffffff;
            }
            
            /* Mobile Navigation */
            .nav-menu {
                display: none;
                position: fixed;
                top: 100%;
                left: 0;
                right: 0;
                background: #000000;
                flex-direction: column;
                padding: 2rem;
                border-top: 1px solid #333333;
                max-height: calc(100vh - 100%);
                overflow-y: auto;
                z-index: 999;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-toggle {
                display: block;
                color: #ffffff;
            }

            .header-logo {
                height: 35px;
            }
            
            .nav-link {
                margin: 0.5rem 0;
                padding: 1rem 0;
                border-bottom: 1px solid #333333;
                font-size: 1.1rem;
                color: #ffffff;
            }
            
            .nav-link:hover {
                color: #ffffff;
                background: rgba(255, 255, 255, 0.1);
            }

            /* Mobile Navigation Dropdown */
            .nav-dropdown {
                width: 100%;
            }

            .nav-dropdown-btn {
                width: 100%;
                justify-content: space-between;
                padding: 1rem 0;
                margin: 0.5rem 0;
                border-bottom: 1px solid #333333;
                font-size: 1.1rem;
                color: #ffffff;
            }

            .nav-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: transparent;
                border: none;
                box-shadow: none;
                margin-left: 1rem;
                margin-top: 0.5rem;
            }

            .nav-dropdown-link {
                padding: 0.75rem 0;
                margin: 0;
                border-bottom: 1px solid #333333;
                font-size: 1rem;
            }

            .nav-dropdown-link:last-child {
                border-bottom: none;
            }

            /* Mobile dropdown toggle functionality */
            .nav-dropdown.active .nav-dropdown-menu {
                display: block;
            }

            .nav-dropdown:not(.active) .nav-dropdown-menu {
                display: none;
            }
            
            .nav-cta {
                margin: 1rem 0 0 0;
                text-align: center;
                padding: 1rem 2rem;
            }
            
            .language-switcher {
                margin-left: 0;
                margin-top: 1rem;
                display: flex;
                justify-content: center;
            }
            
            .lang-dropdown-menu {
                right: auto;
                left: 50%;
                transform: translateX(-50%) translateY(-10px);
                background: #222222;
                border: 1px solid #444444;
            }
            
            .lang-dropdown.active .lang-dropdown-menu {
                transform: translateX(-50%) translateY(0);
            }
            
            .lang-option {
                color: #ffffff;
                border-bottom: 1px solid #444444;
            }
            
            .lang-option:hover {
                background: rgba(255, 255, 255, 0.1);
                color: #ffffff;
            }
            
                        /* Mobile Hero Section */
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-title {
                font-size: 3rem;
                line-height: 1.1;
                margin-bottom: 2rem;
                color: #ffffff;
            }

            .hero-img.cdm-logo {
                max-width: 250px;
                width: 90%;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                line-height: 1.6;
                margin-bottom: 2.5rem;
                color: #e0e0e0;
            }
            
            .hero-cta {
                justify-content: center;
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
                margin-bottom: 2.5rem;
            }
            
            .hero-cta .btn {
                width: 100%;
                max-width: 350px;
                padding: 1.25rem 2rem;
                font-size: 1.1rem;
                min-height: 56px;
            }
            
            .hero-stats {
                justify-content: center;
                flex-direction: row;
                gap: 2rem;
                flex-wrap: wrap;
                margin-top: 2rem;
            }
            
            .hero-stats .stat {
                padding: 1rem 1.5rem;
                font-size: 1rem;
                background: #222222;
                border-radius: 8px;
                border: 1px solid #444444;
                color: #ffffff;
            }
            
            /* Mobile Features & Services */
            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .feature-card,
            .service-card {
                padding: 2.5rem 2rem;
                margin-bottom: 1rem;
                background: #222222;
                border: 1px solid #444444;
            }
            
            .feature-icon,
            .service-icon {
                width: 90px;
                height: 90px;
                font-size: 2.2rem;
                margin-bottom: 2rem;
            }
            
            .feature-title,
            .service-title {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
                color: #ffffff;
            }
            
            .feature-description,
            .service-description {
                font-size: 1.1rem;
                line-height: 1.7;
                color: #e0e0e0;
            }
            
            /* Mobile Pricing */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .plan-card {
                padding: 2.5rem 2rem;
                background: #222222;
                border: 1px solid #444444;
            }
            
            .plan-name {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
                color: #ffffff;
            }
            
            .price {
                font-size: 3rem;
                margin-bottom: 0.5rem;
                color: #ffffff;
            }
            
            .plan-features li {
                padding: 1rem 0;
                font-size: 1.1rem;
                line-height: 1.6;
                color: #e0e0e0;
                border-bottom: 1px solid #444444;
            }
            
            /* Mobile About Section */
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .section-title {
                font-size: 3rem;
                margin-bottom: 2rem;
                color: #ffffff;
            }
            
            .about-description {
                font-size: 1.3rem;
                line-height: 1.7;
                margin-bottom: 2.5rem;
                color: #e0e0e0;
            }
            
            .about-features {
                text-align: left;
                margin: 0 auto;
                max-width: 500px;
            }
            
            .about-features li {
                font-size: 1.2rem;
                padding: 0.75rem 0;
                line-height: 1.6;
                color: #e0e0e0;
            }
            
            /* Mobile Why Choose Us */
            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .why-choose-item {
                padding: 2rem 1.5rem;
                text-align: center;
                background: #222222;
                border-radius: 12px;
                border: 1px solid #444444;
            }
            
            .why-choose-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
            
            .why-choose-item h3 {
                font-size: 1.4rem;
                margin-bottom: 1rem;
                color: #ffffff;
            }
            
            .why-choose-item p {
                font-size: 1.1rem;
                line-height: 1.6;
                color: #e0e0e0;
            }
            
            /* Mobile Testimonials */
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .testimonial-card {
                padding: 2.5rem 2rem;
                background: #222222;
                border: 1px solid #444444;
            }
            
            .testimonial-content p {
                font-size: 1.3rem;
                line-height: 1.7;
                margin-bottom: 2rem;
                color: #ffffff;
            }
            
            /* Mobile Contact */
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .contact-form {
                padding: 2.5rem 2rem;
                background: #222222;
                border: 1px solid #444444;
            }
            
            .form-group {
                margin-bottom: 2rem;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 1.25rem;
                font-size: 1.1rem;
                min-height: 56px;
                background: #333333;
                border: 1px solid #444444;
                color: #ffffff;
            }
            
            .form-group textarea {
                min-height: 140px;
            }
            
            /* Mobile Newsletter */
            .newsletter {
                padding: 5rem 0;
                background: #000000;
                border-top: 1px solid #333333;
            }
            
            .newsletter-title {
                font-size: 3rem;
                margin-bottom: 1.5rem;
                color: #ffffff;
            }
            
            .newsletter-subtitle {
                font-size: 1.3rem;
                margin-bottom: 2.5rem;
                color: #e0e0e0;
            }
            
            .newsletter-input {
                flex-direction: column;
                gap: 1.5rem;
                max-width: 450px;
            }
            
            .newsletter-input input {
                padding: 1.25rem;
                font-size: 1.1rem;
                min-height: 56px;
                background: #333333;
                border: 1px solid #444444;
                color: #ffffff;
            }
            
            .newsletter-input .btn {
                width: 100%;
                padding: 1.25rem 2rem;
                min-height: 56px;
            }
            
            /* Mobile Footer */
            .footer {
                padding: 5rem 0 3rem;
                background: #000000;
                border-top: 1px solid #333333;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .footer-brand h3 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
                color: #ffffff;
            }
            
            .footer-brand p {
                font-size: 1.2rem;
                line-height: 1.6;
                color: #e0e0e0;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 2.5rem;
            }
            
            .footer-column h4 {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
                color: #ffffff;
            }
            
            .footer-column ul li {
                margin-bottom: 0.75rem;
            }
            
            .footer-column ul li a {
                font-size: 1.1rem;
                color: #e0e0e0;
            }
            
            /* Mobile Problem & Solution */
            .problem-solution-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .problem-section h2,
            .solution-section h2 {
                font-size: 2rem;
                text-align: center;
            }
            
            .problem-section p {
                text-align: center;
            }
            
            .solution-section ul {
                text-align: center;
            }
            
            /* Mobile Mission Vision */
            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .mission-vision-header h1 {
                font-size: 2.5rem;
            }
            
            /* Better mobile spacing */
            .features,
            .services,
            .pricing,
            .about,
            .why-choose,
            .testimonials,
            .contact,
            .problem-solution,
            .mission-vision,
            .newsletter {
                padding: 5rem 0;
                background: #000000;
            }

            /* Restaurant AI Analyzer Mobile Spacing */
            .restaurant-gm-hero {
                padding: 3rem 0 2rem 0;
                margin-bottom: 1.5rem;
            }

            .analyzer-section {
                padding: 2rem 0;
                margin-bottom: 2rem;
                margin-left: 1rem;
                margin-right: 1rem;
            }

            .gm-ai-features {
                padding: 3rem 0;
                margin-top: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .gm-ai-cta {
                padding: 2rem 0;
                margin-top: 1.5rem;
            }

            .restaurant-info {
                margin-top: 1.5rem;
                margin-bottom: 1.5rem;
                padding: 1.5rem;
            }

            #analysisResults {
                margin-top: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }
            
            /* Better mobile card shadows and borders */
            .feature-card:hover,
            .service-card:hover,
            .plan-card:hover,
            .testimonial-card:hover {
                transform: translateY(-3px);
                border-color: #ffffff;
            }
            
            /* Mobile Trust Bar */
            .trust-bar {
                background: #000000;
                border-top: 1px solid #333333;
                border-bottom: 1px solid #333333;
            }
            
            .trust-text {
                color: #e0e0e0;
                font-size: 1.1rem;
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .container {
                padding: 0 1.25rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
                color: #ffffff;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                color: #e0e0e0;
            }
            
            .section-title {
                font-size: 2.5rem;
                color: #ffffff;
            }
            
            .plan-card {
                padding: 2rem 1.5rem;
                background: #222222;
                border: 1px solid #444444;
            }
            
            .feature-card,
            .service-card,
            .why-choose-item,
            .testimonial-card {
                padding: 2rem 1.5rem;
                background: #222222;
                border: 1px solid #444444;
            }
            
            .btn {
                padding: 1rem 1.75rem;
                font-size: 1rem;
                min-height: 52px;
            }
            
            .nav-menu {
                padding: 1.5rem;
                background: #000000;
            }
            
            .hero-cta .btn {
                max-width: 100%;
            }
            
            /* Enhanced mobile spacing for better visual hierarchy */
            .features,
            .services,
            .pricing,
            .about,
            .why-choose,
            .testimonials,
            .contact,
            .problem-solution,
            .mission-vision,
            .newsletter {
                padding: 4rem 0;
            }
            
            .section-header {
                margin-bottom: 2.5rem;
            }
            
            /* Improved mobile typography */
            .feature-title,
            .service-title,
            .why-choose-item h3 {
                font-size: 1.4rem;
                color: #ffffff;
            }
            
            .feature-description,
            .service-description,
            .why-choose-item p {
                font-size: 1rem;
                line-height: 1.6;
                color: #e0e0e0;
            }
            
            /* Better mobile card spacing */
            .feature-card,
            .service-card,
            .why-choose-item,
            .testimonial-card {
                margin-bottom: 1.5rem;
            }
            
            /* Improved mobile form */
            .form-group {
                margin-bottom: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
                font-size: 1.1rem;
                color: #e0e0e0;
            }
            
            /* Enhanced mobile newsletter */
            .newsletter-title {
                font-size: 2.5rem;
                color: #ffffff;
            }
            
            .newsletter-subtitle {
                font-size: 1.2rem;
                color: #e0e0e0;
            }
            
            /* Better mobile footer */
            .footer {
                padding: 4rem 0 2.5rem;
                background: #000000;
            }
            
            .footer-brand h3 {
                font-size: 1.6rem;
                color: #ffffff;
            }
            
            .footer-brand p {
                font-size: 1.1rem;
                color: #e0e0e0;
            }
        }

        /* Local SEO Section Styles */
        .local-seo {
            padding: 6rem 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }

        .local-seo::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.1;
        }

        .local-seo .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .local-seo .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .local-seo .section-subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .local-seo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .local-seo-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .local-seo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .local-seo-item:hover::before {
            opacity: 1;
        }

        .local-seo-item:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .local-seo-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
        }

        .local-seo-icon i {
            font-size: 2rem;
            color: #000000;
        }

        .local-seo-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .local-seo-item p {
            font-size: 1.1rem;
            color: #b0b0b0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .local-seo-item ul {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .local-seo-item ul li {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .local-seo-item ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ffffff;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Responsive Local SEO */
        @media (max-width: 1200px) {
            .local-seo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .local-seo {
                padding: 4rem 0;
            }

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

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

            .local-seo-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .local-seo-item {
                padding: 2rem;
            }

            .local-seo-icon {
                width: 70px;
                height: 70px;
            }

            .local-seo-icon i {
                font-size: 1.8rem;
            }

            .local-seo-item h3 {
                font-size: 1.3rem;
            }

            .local-seo-item p {
                font-size: 1rem;
            }
        }

        /* Mobile Hero Section Optimizations */
        @media (max-width: 768px) {
            .hero {
                padding: 3rem 0 2rem 0;
                min-height: 50vh;
            }

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

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .hero-cta {
                margin-bottom: 1rem;
            }

            .hero-cta .btn {
                max-width: 300px;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                min-height: 48px;
            }

           /* Industry-specific hero mobile adjustments */
           .restaurant-hero,
           .jewelry-hero,
           .real-estate-hero,
           .small-business-hero,
           .beauty-salon-hero,
           .insurance-hero {
               padding: 2rem 0 1.5rem 0;
               min-height: 35vh;
           }

            .restaurant-hero .hero-title,
            .jewelry-hero .hero-title,
            .real-estate-hero .hero-title,
            .small-business-hero .hero-title,
            .beauty-salon-hero .hero-title,
            .insurance-hero .hero-title {
                font-size: 2rem;
                margin-bottom: 0.8rem;
                text-align: center;
            }

            .restaurant-hero .hero-subtitle,
            .jewelry-hero .hero-subtitle,
            .real-estate-hero .hero-subtitle,
            .small-business-hero .hero-subtitle,
            .beauty-salon-hero .hero-subtitle,
            .insurance-hero .hero-subtitle {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
                text-align: center;
            }

            .restaurant-hero .hero-cta,
            .jewelry-hero .hero-cta,
            .real-estate-hero .hero-cta,
            .small-business-hero .hero-cta,
            .beauty-salon-hero .hero-cta,
            .insurance-hero .hero-cta {
                margin-bottom: 1rem;
                justify-content: center;
            }

            .restaurant-hero .hero-content,
            .jewelry-hero .hero-content,
            .real-estate-hero .hero-content,
            .small-business-hero .hero-content,
            .beauty-salon-hero .hero-content,
            .insurance-hero .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
        }


