        /* Hide content on first load if no cache */
        html.cms-first-load header,
        html.cms-first-load footer,
        html.cms-first-load main { display: none !important; }
        
        /* Loading Spinner Overlay */
        .loading-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(4px);
            z-index: 9999;
        }
        .spinner {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(255, 119, 0, 0.1);
            border-top-color: #ff7700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Business Page Specific Styles */
        .business-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 80px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--panel-dark) 50%, var(--light-gray) 100%);
        }

        .business-hero-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .business-hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 24px;
        }

        .business-hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .section {
            padding: 80px 20px;
            max-width: 1920px;
            margin: 0 auto;
        }

        .section-alt {
            background: rgba(42, 42, 42, 0.3);
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 48px;
            justify-content: center;
        }

        .benefit-card {
            background: rgba(42, 42, 42, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            flex: 1 1 250px;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 119, 0, 0.3);
            box-shadow: 0 8px 24px rgba(255, 119, 0, 0.2);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            padding: 16px;
            background: rgba(255, 119, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            color: var(--accent);
        }

        .benefit-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 119, 0, 0.2);
            color: var(--accent);
            border: 1px solid rgba(255, 119, 0, 0.3);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* Services Grid */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 48px;
            justify-content: center;
        }

        .service-card {
            background: rgba(42, 42, 42, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            padding: 32px;
            height: 100%;
            display: flex;
            flex-direction: column;
            flex: 1 1 320px;
        }

        /* Auth gate (require login to submit) */
        .auth-gate {
            position: relative;
        }
        .auth-gate.is-locked .auth-gate-content {
            filter: blur(6px);
            pointer-events: none;
            user-select: none;
        }
        .auth-gate-overlay {
            position: absolute;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 16px;
            z-index: 5;
        }
        .auth-gate.is-locked .auth-gate-overlay {
            display: flex;
        }
        .auth-gate-modal {
            width: 100%;
            max-width: 520px;
            text-align: center;
            background: rgba(26, 26, 26, 0.92);
            border: 1px solid rgba(255, 119, 0, 0.25);
            border-radius: 16px;
            padding: 24px 20px;
            backdrop-filter: blur(8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
        }
        .auth-gate-modal h3 {
            margin: 0 0 8px;
            font-size: 1.5rem;
            font-weight: 800;
        }
        .auth-gate-modal p {
            margin: 0 0 16px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .auth-gate-login {
            text-decoration: none;
        }

        .service-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-card > p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }

        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .service-features svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .service-features span {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: start;
        }

        .contact-section > * {
            flex: 1 1 360px;
            min-width: 0;
        }

        .contact-info h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 24px;
        }

        .contact-info > p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .contact-feature-icon {
            padding: 12px;
            background: rgba(255, 119, 0, 0.2);
            border-radius: 12px;
            flex-shrink: 0;
        }

        .contact-feature-icon svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
        }

        .contact-feature-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-feature-content p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* Form Card */
        .form-card {
            background: rgba(42, 42, 42, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            padding: 40px;
        }

        .form-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-card > p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 119, 0, 0.2);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 0.875rem;
            font-family: 'Space Grotesk', Roboto, sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
        }

        .form-group textarea {
            resize: none;
            min-height: 120px;
        }

        .form-error {
            color: #ef4444;
            font-size: 0.75rem;
            margin-top: 4px;
        }

        .submit-btn {
            width: 100%;
            padding: 14px 24px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', Roboto, sans-serif;
        }

        .submit-btn:hover:not(:disabled) {
            background: #e86700;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .submit-btn svg {
            width: 16px;
            height: 16px;
        }

        .spinner {
            width: 16px;
            height: 16px;
            border: 2px solid #ffffff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 48px 24px;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            color: var(--accent);
        }

        .success-message h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .success-message p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .animate-fade {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .business-hero {
                min-height: 50vh;
                padding: 96px 16px 56px;
            }

            .section {
                padding: 56px 16px;
            }

            .section-header {
                margin-bottom: 40px;
                text-align: left;
            }

            .section-header p {
                margin-left: 0;
                margin-right: 0;
            }

            .benefits-grid,
            .services-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 32px;
            }

            .benefit-card,
            .service-card {
                padding: 24px;
                flex: 1 1 auto;
            }

            .contact-section {
                flex-direction: column;
                gap: 32px;
            }

            .contact-features {
                gap: 16px;
            }

            .form-card {
                padding: 28px;
            }
        }

        @media (max-width: 767.98px) {
            .business-hero {
                padding: 88px 16px 48px;
            }

            .section {
                padding: 48px 16px;
            }

            .section-header {
                margin-bottom: 48px;
            }

            .form-card {
                padding: 24px;
            }
        }

        .loading-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a1a1a;
        }
        .spinner {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(255, 119, 0, 0.1);
            border-top-color: #ff7700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
