    /* Custom Scoped Styles for landing page to match layout exactly using Global colors */
    .qb-landing { font-family: var(--font-body); color: var(--text-primary); }
    .qb-top-banner { background: var(--accent); color: white; text-align: center; padding: 8px 0; font-size: 0.9rem; font-weight: 600; }
    .qb-top-banner span { background: white; color: var(--accent); padding: 2px 6px; border-radius: 4px; margin-right: 8px; font-weight: bold; font-size: 0.8rem;}
    
    .qb-hero { padding: 60px 0; background: #fff; }
    .qb-hero-content { display: flex; align-items: center; gap: 40px; }
    .qb-hero-left { flex: 1; }
    .qb-hero-right { flex: 1; position: relative; text-align: right; }
    .qb-hero-right img.main-img { width: 100%; border-radius: 8px; max-width: 500px; display: inline-block; }
    .qb-hero-right .badge { position: absolute; bottom: -20px; left: 20px; background: white; padding: 12px 24px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px; font-weight: bold; font-size: 0.9rem; }
    .qb-hero-right .badge img { width: 40px; }
    
    .qb-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; color: var(--text-primary); line-height: 1.2; }
    .qb-hero p.subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 30px; max-width: 90%; }
    .qb-hero .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
    .qb-hero .feature-item { display: flex; gap: 10px; align-items: flex-start; }
    .qb-hero .feature-item i { color: var(--accent); margin-top: 4px; font-size: 1.2rem; }
    .qb-hero .feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
    .qb-hero .feature-item p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
    .qb-hero .buttons { display: flex; gap: 16px; }
    
    .qb-btn-dark { background: #333; color: white; padding: 12px 28px; border-radius: 99px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
    .qb-btn-dark:hover { background: #000; color: white; }
    .qb-btn-accent { background: var(--accent); color: white; padding: 12px 28px; border-radius: 99px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
    .qb-btn-accent:hover { background: var(--accent-hover); color: white; }
    
    .qb-support-bar { background: var(--primary); color: white; padding: 20px 0; }
    .qb-support-bar .container { display: flex; justify-content: space-between; align-items: center; }
    .qb-support-bar p { margin: 0; font-size: 1rem; line-height: 1.5; font-weight: 500; color: white; }
    
    .qb-video-sec { background: #4a4a4a; color: white; padding: 60px 0; }
    .qb-video-content { display: flex; align-items: center; gap: 60px; }
    .qb-video-left { flex: 1; text-align: center; }
    .qb-video-left h2 { font-size: 2.2rem; margin-bottom: 8px; color: white; }
    .qb-video-left p { font-size: 1.1rem; margin-bottom: 24px; opacity: 0.9; color: white; }
    .qb-video-right { flex: 1; }
    .qb-video-right .video-thumb { width: 100%; border-radius: 8px; overflow: hidden; position: relative; border: 4px solid rgba(255,255,255,0.1); }
    .qb-video-right .video-thumb img { width: 100%; display: block; }
    .qb-video-right .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: red; font-size: 3rem; background: white; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
    
    .qb-split-sec { padding: 80px 0; }
    .qb-split-sec.bg-light { background: #f8f9fa; }
    .qb-split-content { display: flex; align-items: center; gap: 60px; }
    .qb-split-content.reverse { flex-direction: row-reverse; }
    .qb-split-img { flex: 1; text-align: center; }
    .qb-split-img img { max-width: 100%; border-radius: 8px; }
    .qb-split-text { flex: 1; }
    .qb-split-text h2 { font-size: 2.2rem; margin-bottom: 16px; color: var(--primary); }
    .qb-split-text p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 24px; }
    
    .qb-pricing-sec { background: #eef2f6; padding: 80px 0; }
    .qb-pricing-sec h2 { text-align: center; margin-bottom: 40px; }
    .qb-pricing-toggle { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 40px; font-weight: 600; }
    .qb-pricing-toggle span.active { color: var(--accent); }
    .qb-pricing-toggle .switch { position: relative; display: inline-block; width: 50px; height: 26px; }
    .qb-pricing-toggle .switch input { opacity: 0; width: 0; height: 0; }
    .qb-pricing-toggle .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--accent); transition: .4s; border-radius: 34px; }
    .qb-pricing-toggle .slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
    .qb-pricing-toggle .switch input:checked + .slider:before { transform: translateX(24px); }

    .qb-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .qb-pricing-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .qb-pricing-header { padding: 20px; color: white; text-align: center; }
    .qb-pricing-header h3 { font-size: 1.5rem; margin: 0; }
    .qb-pricing-header p { margin: 0; opacity: 0.9; font-size: 0.9rem; }
    .qb-pricing-card:nth-child(1) .qb-pricing-header, .qb-pricing-card:nth-child(1) .qb-pricing-btn { background: #1f3b64; }
    .qb-pricing-card:nth-child(1) .qb-pricing-body li i { color: #1f3b64; }
    
    .qb-pricing-card:nth-child(2) .qb-pricing-header, .qb-pricing-card:nth-child(2) .qb-pricing-btn { background: #10b981; }
    .qb-pricing-card:nth-child(2) .qb-pricing-body li i { color: #10b981; }
    
    .qb-pricing-card:nth-child(3) .qb-pricing-header, .qb-pricing-card:nth-child(3) .qb-pricing-btn { background: #f59e0b; }
    .qb-pricing-card:nth-child(3) .qb-pricing-body li i { color: #f59e0b; }
    
    .qb-pricing-card:nth-child(4) .qb-pricing-header, .qb-pricing-card:nth-child(4) .qb-pricing-btn { background: #ef4444; }
    .qb-pricing-card:nth-child(4) .qb-pricing-body li i { color: #ef4444; }
    
    .qb-pricing-body { padding: 20px; }
    .qb-pricing-body ul { list-style: none; padding: 0; margin: 0 0 20px; }
    .qb-pricing-body li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.85rem; display: flex; gap: 8px; color: var(--text-secondary); }
    .qb-pricing-body li i { margin-top: 3px; }
    .qb-pricing-btn { display: block; text-align: center; color: white; padding: 12px; border-radius: 4px; font-weight: 600; text-decoration: none; transition: 0.3s; }
    .qb-pricing-btn:hover { opacity: 0.9; }
    
    .qb-cta-banner { background: var(--accent); color: white; padding: 16px 0; text-align: center; font-size: 1.1rem; font-weight: bold; }
    
    .qb-features-wrapper { background: #fff; padding: 60px 0; }
    .qb-features-wrapper h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--primary); }
    .qb-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
    .qb-features-col h4 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); color: var(--primary); }
    .qb-features-col ul { list-style: none; padding: 0; }
    .qb-features-col li { font-size: 0.9rem; margin-bottom: 12px; padding-left: 24px; position: relative; color: var(--text-secondary); }
    .qb-features-col li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--accent); font-size: 0.9rem; }
    
    .qb-reasons-sec { background: #f8f9fa; padding: 60px 0; }
    .qb-reasons-sec h2 { margin-bottom: 16px; color: var(--primary); }
    .qb-reasons-sec > p { color: var(--text-secondary); max-width: 800px; margin-bottom: 40px; }
    .qb-reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .qb-reasons-item h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
    .qb-reasons-item p { font-size: 0.95rem; color: var(--text-secondary); }
    
    .qb-form-sec { padding: 80px 0; background: white; }
    .qb-form-container { display: flex; gap: 60px; }
    .qb-form-box { flex: 1; border: 1px solid #eee; border-radius: 12px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
    .qb-form-box h3 { margin-bottom: 10px; color: var(--primary); font-size: 1.8rem; }
    .qb-form-box > p { color: var(--text-secondary); margin-bottom: 24px; font-size: 0.9rem; }
    .qb-form-row { display: flex; gap: 16px; margin-bottom: 16px; }
    .qb-form-box input, .qb-form-box select { width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; font-size: 0.95rem; }
    .qb-form-box .submit-btn { width: 100%; background: var(--accent); color: white; padding: 16px; border: none; border-radius: 6px; font-weight: bold; font-size: 1.1rem; cursor: pointer; transition: 0.3s; margin-top: 8px; }
    .qb-form-box .submit-btn:hover { background: var(--accent-hover); }
    
    .qb-callback-steps { flex: 1; display: flex; flex-direction: column; justify-content: center; }
    .qb-callback-steps h2 { margin-bottom: 16px; font-size: 2.2rem; color: var(--primary); }
    .qb-callback-steps > p { color: var(--text-secondary); margin-bottom: 30px; font-size: 1.05rem; }
    .qb-step { display: flex; gap: 20px; margin-bottom: 24px; }
    .qb-step-content h4 { margin-bottom: 4px; font-size: 1.1rem; color: var(--primary); }
    .qb-step-content p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }
    
    .qb-bottom-benefits { background: var(--primary); color: white; padding: 80px 0; }
    .qb-bottom-benefits-content { display: flex; align-items: center; gap: 60px; }
    .qb-bottom-left { flex: 1; }
    .qb-bottom-left h2 { font-size: 2.2rem; margin-bottom: 20px; color: white; }
    .qb-bottom-left p { font-size: 1.05rem; opacity: 0.9; line-height: 1.6; color: white; }
    .qb-bottom-right { flex: 1; text-align: center; }
    .qb-bottom-right img { max-width: 100%; border-radius: 8px; }
    
    .qb-logos-bar { padding: 40px 0; text-align: center; background: white; }
    .qb-logos-bar img { height: 40px; margin: 0 20px; display: inline-block; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
    .qb-logos-bar img:hover { filter: none; opacity: 1; }
    
    @media (max-width: 992px) {
      .qb-hero-content, .qb-video-content, .qb-split-content, .qb-form-container, .qb-bottom-benefits-content { flex-direction: column; text-align: center; }
      .qb-hero-right, .qb-split-img, .qb-bottom-right { margin-top: 40px; }
      .qb-pricing-grid, .qb-features-grid { grid-template-columns: 1fr 1fr; }
      .qb-reasons-grid { grid-template-columns: 1fr; }
      .qb-hero .features-grid { grid-template-columns: 1fr; text-align: left; }
      .qb-hero .buttons { justify-content: center; }
      .qb-hero-right .badge { left: 50%; transform: translateX(-50%); }
      .qb-step { text-align: left; }
    }
    @media (max-width: 768px) {
      .qb-pricing-grid, .qb-features-grid { grid-template-columns: 1fr; }
      .qb-form-row { flex-direction: column; gap: 16px; margin-bottom: 0; }
      .qb-form-box input { margin-bottom: 16px; }
    }
