{"id":4579,"date":"2026-01-22T20:00:51","date_gmt":"2026-01-22T12:00:51","guid":{"rendered":"https:\/\/gvuxex7z61.onrocket.site\/?page_id=4579"},"modified":"2026-01-25T16:56:59","modified_gmt":"2026-01-25T08:56:59","slug":"about-us","status":"publish","type":"page","link":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/","title":{"rendered":"\u95dc\u65bc\u6211\u5011"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"zh-Hant-HK\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>\u95dc\u65bc\u6211\u5011 | Lexmark Solutions Hong Kong Limited (LSHK)<\/title>\n\n<link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n<link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&#038;family=Noto+Sans+HK:wght@400;500;700&#038;display=swap\" rel=\"stylesheet\">\n\n<script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n<script src=\"https:\/\/unpkg.com\/lucide@latest\"><\/script>\n\n<script>\ntailwind.config = {\n  theme: {\n    extend: {\n      fontFamily: {\n        sans: ['Noto Sans HK', 'Plus Jakarta Sans', 'sans-serif']\n      },\n      colors: {\n        primary: '#0a0a0a',\n        secondary: '#525252',\n        accent: '#3b82f6',\n        accentAlt: '#8b5cf6',\n        muted: '#fafafa',\n        border: '#e5e7eb'\n      }\n    }\n  }\n}\n<\/script>\n\n<style>\n  * { scroll-behavior: smooth; }\n\n  body {\n    line-height: 1.7;\n    -webkit-font-smoothing: antialiased;\n    letter-spacing: -0.01em;\n  }\n\n  \/* AI Gradient text *\/\n  .text-gradient {\n    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);\n    background-size: 200% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation: shimmer 3s ease-in-out infinite;\n  }\n\n  @keyframes shimmer {\n    0%, 100% { background-position: 0% center; }\n    50% { background-position: 100% center; }\n  }\n\n  \/* Industry card with subtle border *\/\n  .industry-card {\n    position: relative;\n    background: white;\n    border-radius: 1rem;\n    border: 1px solid #e5e7eb;\n    transition: border-color 0.3s ease, box-shadow 0.3s ease;\n  }\n  .industry-card:hover {\n    border-color: #3b82f6;\n    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);\n  }\n\n  \/* Glow effect *\/\n  .glow {\n    box-shadow: 0 0 60px rgba(59, 130, 246, 0.15);\n  }\n\n  \/* Floating animation *\/\n  @keyframes float {\n    0%, 100% { transform: translateY(0); }\n    50% { transform: translateY(-10px); }\n  }\n  .float { animation: float 4s ease-in-out infinite; }\n  .float-delayed { animation: float 4s ease-in-out infinite; animation-delay: -2s; }\n\n  \/* Pulse glow *\/\n  @keyframes pulse-glow {\n    0%, 100% { opacity: 0.4; transform: scale(1); }\n    50% { opacity: 0.8; transform: scale(1.05); }\n  }\n  .pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }\n\n  \/* Reveal animations *\/\n  .reveal {\n    opacity: 0;\n    transform: translateY(24px);\n    transition: opacity 0.7s ease, transform 0.7s ease;\n  }\n  .reveal.active {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n  \/* Stagger *\/\n  .stagger > * {\n    opacity: 0;\n    transform: translateY(20px);\n    transition: opacity 0.6s ease, transform 0.6s ease;\n  }\n  .stagger.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }\n  .stagger.active > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }\n\n  \/* Card hover *\/\n  .card {\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n  }\n  .card:hover {\n    transform: translateY(-6px);\n    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.15);\n  }\n\n  \/* Image hover *\/\n  .img-zoom {\n    overflow: hidden;\n  }\n  .img-zoom img {\n    transition: transform 0.5s ease;\n  }\n  .img-zoom:hover img {\n    transform: scale(1.05);\n  }\n\n  \/* Button *\/\n  .btn {\n    transition: all 0.2s ease;\n  }\n  .btn:hover {\n    transform: translateY(-2px);\n  }\n  .btn-glow:hover {\n    box-shadow: 0 8px 30px -8px rgba(59, 130, 246, 0.5);\n  }\n\n  \/* Counter *\/\n  .counter { display: inline-block; }\n\n  \/* Form focus *\/\n  .form-input {\n    transition: border-color 0.2s ease, box-shadow 0.2s ease;\n  }\n  .form-input:focus {\n    outline: none;\n    border-color: #3b82f6;\n    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);\n  }\n\n  \/* Modal *\/\n  .modal-overlay {\n    opacity: 0;\n    visibility: hidden;\n    transition: opacity 0.2s ease, visibility 0.2s ease;\n  }\n  .modal-overlay.active {\n    opacity: 1;\n    visibility: visible;\n  }\n  .modal-content {\n    transform: scale(0.95);\n    transition: transform 0.2s ease;\n  }\n  .modal-overlay.active .modal-content {\n    transform: scale(1);\n  }\n\n  \/* Back to top *\/\n  .back-to-top {\n    opacity: 0;\n    visibility: hidden;\n    transition: all 0.2s ease;\n  }\n  .back-to-top.visible {\n    opacity: 1;\n    visibility: visible;\n  }\n\n  \/* Decorative dots *\/\n  .dots-pattern {\n    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);\n    background-size: 24px 24px;\n  }\n\n  \/* FAQ accordion *\/\n  .faq-item.open .faq-icon {\n    transform: rotate(180deg);\n  }\n  .faq-content {\n    max-height: 0;\n    overflow: hidden;\n    transition: max-height 0.3s ease, padding 0.3s ease;\n  }\n  .faq-item.open .faq-content {\n    max-height: 200px;\n  }\n\n  \/* Typing cursor *\/\n  .typing-cursor {\n    display: inline-block;\n    width: 3px;\n    height: 1em;\n    background: linear-gradient(135deg, #3b82f6, #8b5cf6);\n    margin-left: 4px;\n    animation: blink 1s step-end infinite;\n  }\n  @keyframes blink {\n    0%, 100% { opacity: 1; }\n    50% { opacity: 0; }\n  }\n\n  \/* Particle effect *\/\n  .particle {\n    position: absolute;\n    width: 4px;\n    height: 4px;\n    background: linear-gradient(135deg, #3b82f6, #8b5cf6);\n    border-radius: 50%;\n    pointer-events: none;\n    opacity: 0;\n  }\n\n  \/* Scroll progress indicator *\/\n  .scroll-progress {\n    position: fixed;\n    top: 0;\n    left: 0;\n    height: 3px;\n    background: linear-gradient(90deg, #3b82f6, #8b5cf6);\n    z-index: 100;\n    transition: width 0.1s ease;\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    *, *::before, *::after {\n      animation-duration: 0.01ms !important;\n      transition-duration: 0.01ms !important;\n      scroll-behavior: auto !important;\n    }\n  }\n\n  \/* HubSpot Customization *\/\n  .hs-form-field { margin-bottom: 1rem; }\n  .hs-input { \n    width: 100%; \n    padding: 0.75rem 1rem; \n    border: 1px solid #e5e7eb; \n    border-radius: 0.75rem; \n    font-size: 1rem;\n    transition: border-color 0.2s ease, box-shadow 0.2s ease;\n  }\n  .hs-input:focus {\n    outline: none;\n    border-color: #3b82f6;\n    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);\n  }\n  .hs-button {\n    width: 100%;\n    padding: 1rem;\n    background: linear-gradient(to right, #3b82f6, #8b5cf6);\n    color: white;\n    border-radius: 0.75rem;\n    font-weight: 600;\n    cursor: pointer;\n    transition: transform 0.2s ease, box-shadow 0.2s ease;\n  }\n  .hs-button:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 8px 30px -8px rgba(59, 130, 246, 0.5);\n  }\n  label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 500; }\n<\/style>\n<\/head>\n\n<body class=\"bg-white text-primary font-sans\">\n\n<!-- Scroll Progress -->\n<div class=\"scroll-progress\" id=\"scroll-progress\"><\/div>\n\n<main>\n  <!-- HERO -->\n  <section class=\"min-h-screen flex items-center py-20 relative overflow-hidden\">\n    <!-- Decorative elements -->\n    <div class=\"absolute top-20 right-10 w-72 h-72 bg-accent\/10 rounded-full blur-3xl pulse-glow\"><\/div>\n    <div class=\"absolute bottom-20 left-10 w-96 h-96 bg-accentAlt\/10 rounded-full blur-3xl pulse-glow\" style=\"animation-delay: -1.5s;\"><\/div>\n\n    <div class=\"max-w-6xl mx-auto px-6 grid lg:grid-cols-2 gap-12 items-center\">\n      <div>\n        <div class=\"reveal\">\n          <span class=\"inline-flex items-center gap-2 px-4 py-2 text-xs font-medium bg-gradient-to-r from-accent\/10 to-accentAlt\/10 text-accent rounded-full mb-6\">\n            <span class=\"w-2 h-2 bg-accent rounded-full animate-pulse\"><\/span>\n            About LSHK\n          <\/span>\n        <\/div>\n\n        <h1 class=\"text-4xl sm:text-5xl md:text-6xl font-bold leading-[1.1] mb-6 reveal\" style=\"transition-delay: 0.1s;\">\n          \u5f9e\u5217\u5370\u5c08\u5bb6\uff0c<br>\n          <span class=\"text-gradient\">\u5230\u4f01\u696d AI \u5925\u4f34<\/span>\n        <\/h1>\n\n        <p class=\"text-lg md:text-xl text-secondary max-w-xl mb-10 reveal\" style=\"transition-delay: 0.2s;\">\n          \u6211\u5011\u70ba\u9999\u6e2f\u4f01\u696d\u5efa\u7acb\u7a69\u5b9a\u3001\u53ef\u64f4\u5c55\u7684 IT \u57fa\u790e\uff0c\u5f9e\u6587\u5370\u7ba1\u7406\u3001\u8cc7\u8a0a\u5b89\u5168\u5230\u6d41\u7a0b\u81ea\u52d5\u5316\uff0c\u8b93\u79d1\u6280\u771f\u6b63\u5e6b\u5230\u696d\u52d9\u589e\u9577\u3002\n        <\/p>\n\n        <div class=\"flex flex-wrap gap-4 reveal\" style=\"transition-delay: 0.3s;\">\n          <a href=\"#contact\" class=\"btn btn-glow inline-flex items-center gap-2 px-6 py-3 bg-gradient-to-r from-accent to-accentAlt text-white rounded-xl font-medium\">\n            \u9810\u7d04 IT \u67b6\u69cb\u8a55\u4f30\n            <i data-lucide=\"arrow-right\" class=\"w-4 h-4\"><\/i>\n          <\/a>\n          <a href=\"#about\" class=\"btn inline-flex items-center gap-2 px-6 py-3 border border-border rounded-xl font-medium hover:bg-muted\">\n            \u4e86\u89e3\u66f4\u591a\n          <\/a>\n        <\/div>\n\n        <p class=\"text-sm text-secondary\/60 mt-12 reveal\" style=\"transition-delay: 0.4s;\">\n          Lexmark Solutions Hong Kong Limited \u00b7 Beesee Technology \u6210\u54e1\n        <\/p>\n      <\/div>\n\n      <!-- Hero Image -->\n      <div class=\"reveal float\" style=\"transition-delay: 0.2s;\">\n        <div class=\"relative\">\n          <div class=\"absolute inset-0 bg-gradient-to-br from-accent to-accentAlt rounded-3xl blur-2xl opacity-20 scale-95\"><\/div>\n          <div class=\"relative img-zoom rounded-3xl overflow-hidden glow\">\n            <img decoding=\"async\" src=\"https:\/\/lexmark-hk.com\/wp-content\/uploads\/2026\/01\/\u5f9e\u5217\u5370\u5c08\u5bb6\uff0c-\u5230\u4f01\u696d-AI-\u5925\u4f34.png\" alt=\"Lexmark Solutions \u9999\u6e2f\u8fa6\u516c\u5ba4\u74b0\u5883\uff1a\u73fe\u4ee3\u5316\u4f01\u696d\u6703\u8b70\u5ba4\" class=\"w-full aspect-[4\/3] object-cover\">\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- STATS -->\n  <section class=\"py-20 bg-primary text-white relative overflow-hidden\">\n    <div class=\"absolute inset-0 dots-pattern opacity-10\"><\/div>\n    <div class=\"max-w-5xl mx-auto px-6 relative\">\n      <div class=\"grid grid-cols-3 gap-8 text-center stagger\">\n        <div>\n          <p class=\"text-4xl md:text-5xl font-bold\"><span class=\"text-gradient counter\" data-target=\"10\">0<\/span><span class=\"text-gradient\">+<\/span><\/p>\n          <p class=\"text-sm text-white\/60 mt-2\">\u5e74\u4f01\u696d IT \u670d\u52d9\u7d93\u9a57<\/p>\n        <\/div>\n        <div>\n          <p class=\"text-4xl md:text-5xl font-bold\"><span class=\"text-gradient counter\" data-target=\"300\">0<\/span><span class=\"text-gradient\">+<\/span><\/p>\n          <p class=\"text-sm text-white\/60 mt-2\">\u670d\u52d9\u4f01\u696d<\/p>\n        <\/div>\n        <div>\n          <p class=\"text-4xl md:text-5xl font-bold\"><span class=\"text-gradient counter\" data-target=\"1000\">0<\/span><span class=\"text-gradient\">+<\/span><\/p>\n          <p class=\"text-sm text-white\/60 mt-2\">\u7ba1\u7406\u6253\u5370\u6a5f<\/p>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- ABOUT -->\n  <section id=\"about\" class=\"py-28\">\n    <div class=\"max-w-6xl mx-auto px-6\">\n      <div class=\"grid lg:grid-cols-2 gap-16 items-center\">\n        <div class=\"reveal\">\n          <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u6211\u5011\u662f\u8ab0<\/span>\n          <h2 class=\"text-3xl md:text-4xl font-bold mt-3 mb-6\">\u91cd\u65b0\u5b9a\u7fa9<br>\u4f01\u696d IT \u670d\u52d9<\/h2>\n          <p class=\"text-secondary mb-4\">\n            LSHK \u627f\u8972 Beesee Technology \u96c6\u5718\u591a\u5e74\u4f01\u696d IT \u670d\u52d9\u7d93\u9a57\uff0c\u5c08\u6ce8\u65bc\u4f01\u696d\u6587\u5370\u7ba1\u7406\u8207 IT \u57fa\u790e\u67b6\u69cb\u3002\u6211\u5011\u7684\u6838\u5fc3\u4fc2\uff1a\n            <span class=\"text-primary font-medium\">\u5e6b\u4f01\u696d\u628a IT \u505a\u5230\u300c\u7a69\u5b9a + \u53ef\u6301\u7e8c\u300d\u3002<\/span>\n          <\/p>\n          <p class=\"text-secondary mb-8\">\n            \u6211\u5011\u5514\u8ce3\u904e\u5ea6\u65b9\u6848\uff0c\u5148\u7406\u89e3\u73fe\u6cc1\uff0c\u518d\u63d0\u4f9b\u771f\u6b63\u5408\u9069\u7684\u67b6\u69cb\u8207\u670d\u52d9\u3002\n          <\/p>\n\n          <!-- Core positioning -->\n          <div class=\"grid grid-cols-3 gap-4 mb-8 p-4 bg-muted rounded-xl border border-border\">\n            <div class=\"text-center\">\n              <p class=\"text-lg font-bold text-primary\">\u4f01\u696d\u7d1a<\/p>\n              <p class=\"text-xs text-secondary\">B2B \u5c08\u6ce8<\/p>\n            <\/div>\n            <div class=\"text-center border-x border-border\">\n              <p class=\"text-lg font-bold text-primary\">\u672c\u5730<\/p>\n              <p class=\"text-xs text-secondary\">\u9999\u6e2f\u5718\u968a<\/p>\n            <\/div>\n            <div class=\"text-center\">\n              <p class=\"text-lg font-bold text-primary\">\u53ef\u64f4\u5c55<\/p>\n              <p class=\"text-xs text-secondary\">SME \u2192 MNC<\/p>\n            <\/div>\n          <\/div>\n\n          <!-- Mini features -->\n          <div class=\"grid grid-cols-2 gap-4\">\n            <div class=\"flex items-center gap-3\">\n              <div class=\"w-10 h-10 bg-accent\/10 rounded-lg flex items-center justify-center\">\n                <i data-lucide=\"zap\" class=\"w-5 h-5 text-accent\"><\/i>\n              <\/div>\n              <span class=\"text-sm font-medium\">\u5feb\u901f\u97ff\u61c9<\/span>\n            <\/div>\n            <div class=\"flex items-center gap-3\">\n              <div class=\"w-10 h-10 bg-accentAlt\/10 rounded-lg flex items-center justify-center\">\n                <i data-lucide=\"shield\" class=\"w-5 h-5 text-accentAlt\"><\/i>\n              <\/div>\n              <span class=\"text-sm font-medium\">\u5b89\u5168\u53ef\u9760<\/span>\n            <\/div>\n            <div class=\"flex items-center gap-3\">\n              <div class=\"w-10 h-10 bg-accent\/10 rounded-lg flex items-center justify-center\">\n                <i data-lucide=\"trending-up\" class=\"w-5 h-5 text-accent\"><\/i>\n              <\/div>\n              <span class=\"text-sm font-medium\">\u6301\u7e8c\u512a\u5316<\/span>\n            <\/div>\n            <div class=\"flex items-center gap-3\">\n              <div class=\"w-10 h-10 bg-accentAlt\/10 rounded-lg flex items-center justify-center\">\n                <i data-lucide=\"users\" class=\"w-5 h-5 text-accentAlt\"><\/i>\n              <\/div>\n              <span class=\"text-sm font-medium\">\u5c08\u696d\u5718\u968a<\/span>\n            <\/div>\n          <\/div>\n        <\/div>\n\n        <div class=\"reveal\" style=\"transition-delay: 0.1s;\">\n          <div class=\"grid grid-cols-2 gap-4\">\n            <div class=\"img-zoom rounded-2xl overflow-hidden\">\n              <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1522071820081-009f0129c71c?w=600&#038;q=80\" alt=\"\u5c08\u696d IT \u9867\u554f\u5718\u968a\u8a0e\u8ad6\u4e2d\" class=\"w-full aspect-square object-cover\">\n            <\/div>\n            <div class=\"img-zoom rounded-2xl overflow-hidden mt-8\">\n              <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1551434678-e076c223a692?w=600&#038;q=80\" alt=\"\u958b\u653e\u5f0f\u8fa6\u516c\u74b0\u5883\u8207\u54e1\u5de5\u5354\u4f5c\" class=\"w-full aspect-square object-cover\">\n            <\/div>\n            <div class=\"img-zoom rounded-2xl overflow-hidden col-span-2\">\n              <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1497215842964-222b430dc094?w=800&#038;q=80\" alt=\"\u73fe\u4ee3\u5316\u4f01\u696d\u7d1a\u4f3a\u670d\u5668\u8207\u7db2\u7d61\u8a2d\u5099\u6a5f\u623f\" class=\"w-full aspect-[2\/1] object-cover\">\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- INDUSTRIES -->\n  <section class=\"py-28 bg-muted relative overflow-hidden\">\n    <div class=\"absolute top-0 right-0 w-1\/2 h-full dots-pattern opacity-50\"><\/div>\n    <div class=\"max-w-5xl mx-auto px-6 relative\">\n      <div class=\"text-center mb-16 reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u670d\u52d9\u7bc4\u7587<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3\">\u6211\u5011\u670d\u52d9\u7684\u884c\u696d<\/h2>\n      <\/div>\n\n      <div class=\"grid grid-cols-2 md:grid-cols-4 gap-4 stagger\">\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"building-2\" class=\"w-6 h-6 mx-auto mb-3 text-accent\"><\/i>\n          <p class=\"font-medium\">\u91d1\u878d<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u5408\u898f\u3001\u5b89\u5168<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"shopping-bag\" class=\"w-6 h-6 mx-auto mb-3 text-accent\"><\/i>\n          <p class=\"font-medium\">\u96f6\u552e<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u591a\u9ede\u7ba1\u7406<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"graduation-cap\" class=\"w-6 h-6 mx-auto mb-3 text-accent\"><\/i>\n          <p class=\"font-medium\">\u6559\u80b2<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u7a69\u5b9a\u53ef\u9760<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"briefcase\" class=\"w-6 h-6 mx-auto mb-3 text-accent\"><\/i>\n          <p class=\"font-medium\">\u670d\u52d9\u5f0f\u8fa6\u516c\u5ba4<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u5f48\u6027\u64f4\u5c55<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"heart-pulse\" class=\"w-6 h-6 mx-auto mb-3 text-accentAlt\"><\/i>\n          <p class=\"font-medium\">\u91ab\u7642<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u79c1\u96b1\u4fdd\u969c<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"scale\" class=\"w-6 h-6 mx-auto mb-3 text-accentAlt\"><\/i>\n          <p class=\"font-medium\">\u6cd5\u5f8b<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u6a5f\u5bc6\u6587\u4ef6<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"factory\" class=\"w-6 h-6 mx-auto mb-3 text-accentAlt\"><\/i>\n          <p class=\"font-medium\">\u88fd\u9020\u696d<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u9ad8\u6548\u751f\u7522<\/p>\n        <\/div>\n        <div class=\"card industry-card p-6 text-center\">\n          <i data-lucide=\"plus\" class=\"w-6 h-6 mx-auto mb-3 text-secondary\"><\/i>\n          <p class=\"font-medium text-secondary\">\u66f4\u591a\u884c\u696d<\/p>\n          <p class=\"text-xs text-secondary mt-1\">\u6309\u9700\u5b9a\u5236<\/p>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- PROCESS -->\n  <section class=\"py-28 relative overflow-hidden\">\n    <div class=\"absolute left-0 top-1\/2 -translate-y-1\/2 w-96 h-96 bg-accent\/5 rounded-full blur-3xl\"><\/div>\n    <div class=\"max-w-5xl mx-auto px-6 relative\">\n      <div class=\"text-center mb-16 reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u5de5\u4f5c\u6d41\u7a0b<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3\">\u6211\u5011\u9ede\u6a23\u505a<\/h2>\n      <\/div>\n\n      <div class=\"grid md:grid-cols-4 gap-8 stagger\">\n        <div class=\"relative group\">\n          <div class=\"absolute -top-4 -left-4 w-20 h-20 bg-accent\/5 rounded-full group-hover:bg-accent\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"text-6xl font-bold text-accent\/20 mb-4\">01<\/div>\n            <h3 class=\"font-semibold mb-2\">\u8a3a\u65b7\u73fe\u6cc1<\/h3>\n            <p class=\"text-sm text-secondary\">\u8a2d\u5099\u3001\u6d41\u7a0b\u3001\u6210\u672c\u8207\u5b89\u5168\u5168\u9762\u8a55\u4f30<\/p>\n          <\/div>\n        <\/div>\n        <div class=\"relative group\">\n          <div class=\"absolute -top-4 -left-4 w-20 h-20 bg-accent\/5 rounded-full group-hover:bg-accent\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"text-6xl font-bold text-accent\/20 mb-4\">02<\/div>\n            <h3 class=\"font-semibold mb-2\">\u8a2d\u8a08\u65b9\u6848<\/h3>\n            <p class=\"text-sm text-secondary\">\u6548\u80fd\u3001\u6210\u672c\u8207\u53ef\u64f4\u5c55\u6027\u5e73\u8861<\/p>\n          <\/div>\n        <\/div>\n        <div class=\"relative group\">\n          <div class=\"absolute -top-4 -left-4 w-20 h-20 bg-accentAlt\/5 rounded-full group-hover:bg-accentAlt\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"text-6xl font-bold text-accentAlt\/20 mb-4\">03<\/div>\n            <h3 class=\"font-semibold mb-2\">\u843d\u5730\u7dad\u904b<\/h3>\n            <p class=\"text-sm text-secondary\">SLA \u4fdd\u969c + 7\u00d724 \u6280\u8853\u652f\u63f4<\/p>\n          <\/div>\n        <\/div>\n        <div class=\"relative group\">\n          <div class=\"absolute -top-4 -left-4 w-20 h-20 bg-accentAlt\/5 rounded-full group-hover:bg-accentAlt\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"text-6xl font-bold text-accentAlt\/20 mb-4\">04<\/div>\n            <h3 class=\"font-semibold mb-2\">\u6301\u7e8c\u512a\u5316<\/h3>\n            <p class=\"text-sm text-secondary\">\u6578\u64da\u56de\u9867 + \u81ea\u52d5\u5316\u5347\u7d1a<\/p>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- CASE STUDY -->\n  <section id=\"case-study\" class=\"py-28 bg-gradient-to-br from-primary via-primary to-gray-900 text-white relative overflow-hidden\">\n    <div class=\"absolute inset-0 dots-pattern opacity-5\"><\/div>\n    <div class=\"absolute top-0 right-0 w-1\/2 h-1\/2 bg-accent\/10 rounded-full blur-3xl\"><\/div>\n    <div class=\"absolute bottom-0 left-0 w-1\/3 h-1\/2 bg-accentAlt\/10 rounded-full blur-3xl\"><\/div>\n\n    <div class=\"max-w-6xl mx-auto px-6 relative\">\n      <div class=\"text-center mb-16 reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u6210\u529f\u6848\u4f8b<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3\">\u9818\u5148\u4f01\u696d\u7684\u4fe1\u8cf4\u4e4b\u9078<\/h2>\n      <\/div>\n\n      <div class=\"grid lg:grid-cols-2 gap-12 items-center\">\n        <div class=\"reveal\">\n          <!-- Client badge -->\n          <div class=\"inline-flex items-center gap-3 px-4 py-2 bg-white\/10 backdrop-blur rounded-full mb-6\">\n            <div class=\"w-8 h-8 bg-gradient-to-br from-amber-400 to-orange-500 rounded-lg flex items-center justify-center text-white font-bold text-sm\">TEC<\/div>\n            <span class=\"font-medium\">The Executive Centre<\/span>\n          <\/div>\n\n          <h3 class=\"text-2xl md:text-3xl font-bold mb-4\">\u4e9e\u592a\u5340\u9802\u7d1a\u670d\u52d9\u5f0f\u8fa6\u516c\u5ba4<br>\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u65b9\u6848<\/h3>\n\n          <p class=\"text-white\/60 mb-8\">\u901a\u904e Lexmark Cloud Management \u5be6\u73fe\u8de8\u5730\u9ede\u7d71\u4e00\u7ba1\u7406\uff0cIT \u6548\u7387\u5927\u5e45\u63d0\u5347\u3002<\/p>\n\n          <div class=\"space-y-4 mb-8\">\n            <div class=\"flex gap-4\">\n              <div class=\"w-1 bg-gradient-to-b from-accent to-accentAlt rounded-full flex-shrink-0\"><\/div>\n              <div>\n                <p class=\"font-medium mb-1\">\u6311\u6230<\/p>\n                <p class=\"text-white\/60 text-sm\">16 \u500b\u8fa6\u516c\u5730\u9ede\u3001\u8d85\u904e 100 \u5bb6\u5165\u99d0\u4f01\u696d\uff0c\u8907\u96dc\u7684\u5217\u5370\u7528\u91cf\u7d71\u8a08\u8207\u5831\u544a\u9700\u6c42\u3002<\/p>\n              <\/div>\n            <\/div>\n            <div class=\"flex gap-4\">\n              <div class=\"w-1 bg-white\/30 rounded-full flex-shrink-0\"><\/div>\n              <div>\n                <p class=\"font-medium mb-1\">\u65b9\u6848<\/p>\n                <p class=\"text-white\/60 text-sm\">\u90e8\u7f72 Lexmark Cloud + IoT \u667a\u80fd\u6253\u5370\u6a5f\u3002<\/p>\n              <\/div>\n            <\/div>\n          <\/div>\n\n          <!-- Case study image -->\n          <div class=\"img-zoom rounded-2xl overflow-hidden\">\n            <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1497366754035-f200968a6e72?w=800&#038;q=80\" alt=\"The Executive Centre \u5ba2\u6236\u6848\u4f8b\uff1a\u4e9e\u592a\u5340\u670d\u52d9\u5f0f\u8fa6\u516c\u5ba4\u74b0\u5883\" class=\"w-full aspect-video object-cover\">\n          <\/div>\n        <\/div>\n\n        <div class=\"reveal\" style=\"transition-delay: 0.1s;\">\n          <div class=\"bg-white\/5 backdrop-blur-sm rounded-3xl p-8 border border-white\/10\">\n            <p class=\"text-sm text-white\/60 mb-6\">\u95dc\u9375\u6210\u6548<\/p>\n\n            <div class=\"grid grid-cols-3 gap-4 mb-8\">\n              <div class=\"text-center p-4 bg-white\/5 rounded-2xl\">\n                <p class=\"text-4xl font-bold text-gradient counter\" data-target=\"16\">0<\/p>\n                <p class=\"text-sm text-white\/60 mt-2\">\u8fa6\u516c\u5730\u9ede<\/p>\n              <\/div>\n              <div class=\"text-center p-4 bg-white\/5 rounded-2xl\">\n                <p class=\"text-4xl font-bold\"><span class=\"text-gradient counter\" data-target=\"100\">0<\/span><span class=\"text-gradient\">+<\/span><\/p>\n                <p class=\"text-sm text-white\/60 mt-2\">\u5165\u99d0\u4f01\u696d<\/p>\n              <\/div>\n              <div class=\"text-center p-4 bg-white\/5 rounded-2xl\">\n                <p class=\"text-4xl font-bold text-gradient\">0<\/p>\n                <p class=\"text-sm text-white\/60 mt-2\">\u672c\u5730\u4f3a\u670d\u5668<\/p>\n              <\/div>\n            <\/div>\n\n            <div class=\"space-y-3\">\n              <div class=\"flex items-center gap-3 p-3 bg-white\/5 rounded-xl\">\n                <div class=\"w-8 h-8 bg-accent\/20 rounded-lg flex items-center justify-center\">\n                  <i data-lucide=\"cloud\" class=\"w-4 h-4 text-accent\"><\/i>\n                <\/div>\n                <span class=\"text-white\/80 text-sm\">Serverless \u96f2\u7aef\u67b6\u69cb<\/span>\n              <\/div>\n              <div class=\"flex items-center gap-3 p-3 bg-white\/5 rounded-xl\">\n                <div class=\"w-8 h-8 bg-accent\/20 rounded-lg flex items-center justify-center\">\n                  <i data-lucide=\"settings\" class=\"w-4 h-4 text-accent\"><\/i>\n                <\/div>\n                <span class=\"text-white\/80 text-sm\">\u7d71\u4e00\u5217\u5370\u653f\u7b56<\/span>\n              <\/div>\n              <div class=\"flex items-center gap-3 p-3 bg-white\/5 rounded-xl\">\n                <div class=\"w-8 h-8 bg-accentAlt\/20 rounded-lg flex items-center justify-center\">\n                  <i data-lucide=\"cpu\" class=\"w-4 h-4 text-accentAlt\"><\/i>\n                <\/div>\n                <span class=\"text-white\/80 text-sm\">IoT \u667a\u80fd\u8a2d\u5099\u76e3\u63a7<\/span>\n              <\/div>\n              <div class=\"flex items-center gap-3 p-3 bg-white\/5 rounded-xl\">\n                <div class=\"w-8 h-8 bg-accentAlt\/20 rounded-lg flex items-center justify-center\">\n                  <i data-lucide=\"clock\" class=\"w-4 h-4 text-accentAlt\"><\/i>\n                <\/div>\n                <span class=\"text-white\/80 text-sm\">IT \u7ba1\u7406\u6642\u9593\u5927\u5e45\u6e1b\u5c11<\/span>\n              <\/div>\n            <\/div>\n\n            <div class=\"mt-8 pt-6 border-t border-white\/10\">\n              <a href=\"https:\/\/www.executivecentre.com\/zh-hk\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"inline-flex items-center gap-2 text-accent hover:underline text-sm font-medium\">\n                \u4e86\u89e3 The Executive Centre\n                <i data-lucide=\"external-link\" class=\"w-4 h-4\"><\/i>\n              <\/a>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- WHY US -->\n  <section class=\"py-28\">\n    <div class=\"max-w-5xl mx-auto px-6\">\n      <div class=\"text-center mb-16 reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u70ba\u4f55\u9078\u64c7 LSHK<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3\">\u6211\u5011\u7684\u4e0d\u540c\u4e4b\u8655<\/h2>\n      <\/div>\n\n      <div class=\"grid md:grid-cols-3 gap-8 stagger\">\n        <div class=\"card bg-muted rounded-2xl p-8 relative overflow-hidden group\">\n          <div class=\"absolute top-0 right-0 w-32 h-32 bg-accent\/5 rounded-full blur-2xl group-hover:bg-accent\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"w-12 h-12 bg-gradient-to-br from-accent to-accentAlt rounded-xl flex items-center justify-center mb-5\">\n              <i data-lucide=\"message-circle\" class=\"w-6 h-6 text-white\"><\/i>\n            <\/div>\n            <h3 class=\"font-semibold text-lg mb-2\">\u5148\u7406\u89e3\uff0c\u518d\u5efa\u8b70<\/h3>\n            <p class=\"text-secondary text-sm\">\u6df1\u5165\u7406\u89e3\u696d\u52d9\u9700\u6c42\u5f8c\uff0c\u624d\u63d0\u51fa\u6700\u9069\u5408\u7684\u89e3\u6c7a\u65b9\u6848\u3002<\/p>\n          <\/div>\n        <\/div>\n        <div class=\"card bg-muted rounded-2xl p-8 relative overflow-hidden group\">\n          <div class=\"absolute top-0 right-0 w-32 h-32 bg-accentAlt\/5 rounded-full blur-2xl group-hover:bg-accentAlt\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"w-12 h-12 bg-gradient-to-br from-accent to-accentAlt rounded-xl flex items-center justify-center mb-5\">\n              <i data-lucide=\"shield-check\" class=\"w-6 h-6 text-white\"><\/i>\n            <\/div>\n            <h3 class=\"font-semibold text-lg mb-2\">\u4e3b\u52d5\u5f0f\u7dad\u904b<\/h3>\n            <p class=\"text-secondary text-sm\">\u900f\u904e\u76e3\u63a7\u8207\u9810\u8b66\u7cfb\u7d71\uff0c\u554f\u984c\u767c\u751f\u524d\u5df2\u8655\u7406\u3002<\/p>\n          <\/div>\n        <\/div>\n        <div class=\"card bg-muted rounded-2xl p-8 relative overflow-hidden group\">\n          <div class=\"absolute top-0 right-0 w-32 h-32 bg-accent\/5 rounded-full blur-2xl group-hover:bg-accent\/10 transition-colors\"><\/div>\n          <div class=\"relative\">\n            <div class=\"w-12 h-12 bg-gradient-to-br from-accent to-accentAlt rounded-xl flex items-center justify-center mb-5\">\n              <i data-lucide=\"handshake\" class=\"w-6 h-6 text-white\"><\/i>\n            <\/div>\n            <h3 class=\"font-semibold text-lg mb-2\">\u9577\u671f\u5408\u4f5c<\/h3>\n            <p class=\"text-secondary text-sm\">\u4e0d\u55ae\u4ea4\u4ed8\u9805\u76ee\uff0c\u66f4\u966a\u4f34\u5ba2\u6236\u6301\u7e8c\u6210\u9577\u3002<\/p>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- TESTIMONIALS -->\n  <section class=\"py-28 bg-muted relative overflow-hidden\">\n    <div class=\"absolute inset-0 dots-pattern opacity-30\"><\/div>\n    <div class=\"max-w-5xl mx-auto px-6 relative\">\n      <div class=\"text-center mb-16 reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u5ba2\u6236\u8a55\u50f9<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3\">\u4ed6\u5011\u600e\u6a23\u8aaa<\/h2>\n      <\/div>\n\n      <div class=\"grid md:grid-cols-2 gap-8 stagger\">\n        <div class=\"card bg-white rounded-2xl p-8 relative\">\n          <div class=\"absolute top-6 right-6 text-6xl font-serif text-accent\/10\">&#8220;<\/div>\n          <div class=\"flex items-center gap-4 mb-6\">\n            <div class=\"w-14 h-14 rounded-full bg-gradient-to-br from-accent to-accentAlt flex items-center justify-center text-white font-bold text-xl\" aria-hidden=\"true\">W<\/div>\n            <div>\n              <p class=\"font-semibold\">Wong\u5148\u751f<\/p>\n              <p class=\"text-sm text-secondary\">IT Manager, \u91d1\u878d\u670d\u52d9\u516c\u53f8<\/p>\n            <\/div>\n          <\/div>\n          <p class=\"text-secondary relative z-10\">\u300cLSHK \u5718\u968a\u975e\u5e38\u5c08\u696d\uff0c\u5f9e\u8a55\u4f30\u5230\u843d\u5730\u53ea\u7528\u4e86\u5169\u661f\u671f\u3002\u6700\u91cd\u8981\u4fc2\u4f62\u54cb\u771f\u4fc2\u7406\u89e3\u6211\u54cb\u5605\u696d\u52d9\u9700\u8981\uff0c\u5514\u4fc2\u9f4b\u8ce3\u7522\u54c1\u3002\u300d<\/p>\n          <div class=\"flex gap-1 mt-4\" aria-label=\"5 out of 5 stars\">\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n          <\/div>\n        <\/div>\n\n        <div class=\"card bg-white rounded-2xl p-8 relative\">\n          <div class=\"absolute top-6 right-6 text-6xl font-serif text-accentAlt\/10\">&#8220;<\/div>\n          <div class=\"flex items-center gap-4 mb-6\">\n            <div class=\"w-14 h-14 rounded-full bg-gradient-to-br from-accentAlt to-pink-500 flex items-center justify-center text-white font-bold text-xl\" aria-hidden=\"true\">L<\/div>\n            <div>\n              <p class=\"font-semibold\">\u674e\u5c0f\u59d0<\/p>\n              <p class=\"text-sm text-secondary\">Operations Director, \u6cd5\u5f8b\u4e8b\u52d9\u6240<\/p>\n            <\/div>\n          <\/div>\n          <p class=\"text-secondary relative z-10\">\u300c\u96f2\u7aef\u5217\u5370\u65b9\u6848\u5e6b\u6211\u54cb\u7bc0\u7701\u5497\u5927\u91cf IT \u6642\u9593\u3002\u4ee5\u524d\u65e5\u65e5\u90fd\u6709\u4eba\u6253\u569f\u554f\u5370\u8868\u6a5f\u554f\u984c\uff0c\u800c\u5bb6\u5e7e\u4e4e\u96f6\u6295\u8a34\u3002\u300d<\/p>\n          <div class=\"flex gap-1 mt-4\" aria-label=\"5 out of 5 stars\">\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n            <i data-lucide=\"star\" class=\"w-4 h-4 text-amber-400 fill-amber-400\" aria-hidden=\"true\"><\/i>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- FAQ -->\n  <section class=\"py-28\">\n    <div class=\"max-w-3xl mx-auto px-6\">\n      <div class=\"text-center mb-16 reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u5e38\u898b\u554f\u984c<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3\">FAQ<\/h2>\n      <\/div>\n\n      <div class=\"space-y-4 stagger\" id=\"faq-container\">\n        <div class=\"faq-item border border-border rounded-xl overflow-hidden\">\n          <button class=\"faq-btn w-full px-6 py-5 flex items-center justify-between text-left font-medium hover:bg-muted\/50 transition-colors\" aria-expanded=\"false\">\n            <span>LSHK \u4e3b\u8981\u670d\u52d9\u9999\u6e2f\u9084\u662f\u5176\u4ed6\u5730\u5340\uff1f<\/span>\n            <i data-lucide=\"chevron-down\" class=\"w-5 h-5 text-accent faq-icon transition-transform\"><\/i>\n          <\/button>\n          <div class=\"faq-content px-6 pb-5 hidden\">\n            <p class=\"text-secondary text-sm\">\u6211\u5011\u4e3b\u8981\u670d\u52d9\u9999\u6e2f\u5e02\u5834\uff0c\u4f46\u900f\u904e Beesee Technology \u96c6\u5718\u8cc7\u6e90\uff0c\u4ea6\u53ef\u652f\u63f4\u5927\u7063\u5340\u53ca\u4e9e\u592a\u5340\u4f01\u696d\u3002<\/p>\n          <\/div>\n        <\/div>\n\n        <div class=\"faq-item border border-border rounded-xl overflow-hidden\">\n          <button class=\"faq-btn w-full px-6 py-5 flex items-center justify-between text-left font-medium hover:bg-muted\/50 transition-colors\" aria-expanded=\"false\">\n            <span>\u6700\u4f4e\u670d\u52d9\u5408\u7d04\u671f\u4fc2\u5e7e\u9577\uff1f<\/span>\n            <i data-lucide=\"chevron-down\" class=\"w-5 h-5 text-accent faq-icon transition-transform\"><\/i>\n          <\/button>\n          <div class=\"faq-content px-6 pb-5 hidden\">\n            <p class=\"text-secondary text-sm\">\u6211\u5011\u63d0\u4f9b\u5f48\u6027\u5408\u7d04\u9078\u9805\uff0c\u7531\u6309\u6b21\u6536\u8cbb\u5230\u5e74\u5ea6\u5408\u7d04\u90fd\u6709\u3002\u6703\u6839\u64da\u4f60\u5605\u5be6\u969b\u9700\u8981\u63d0\u4f9b\u6700\u5408\u9069\u5605\u65b9\u6848\u3002<\/p>\n          <\/div>\n        <\/div>\n\n        <div class=\"faq-item border border-border rounded-xl overflow-hidden\">\n          <button class=\"faq-btn w-full px-6 py-5 flex items-center justify-between text-left font-medium hover:bg-muted\/50 transition-colors\" aria-expanded=\"false\">\n            <span>\u53ef\u4ee5\u63d0\u4f9b\u7dca\u6025\u652f\u63f4\u55ce\uff1f<\/span>\n            <i data-lucide=\"chevron-down\" class=\"w-5 h-5 text-accent faq-icon transition-transform\"><\/i>\n          <\/button>\n          <div class=\"faq-content px-6 pb-5 hidden\">\n            <p class=\"text-secondary text-sm\">\u53ef\u4ee5\uff01\u6211\u5011\u63d0\u4f9b 7\u00d724 \u7dca\u6025\u652f\u63f4\u71b1\u7dda\uff0c\u78ba\u4fdd\u4f60\u5605\u696d\u52d9\u5514\u6703\u56e0\u70ba IT \u554f\u984c\u800c\u4e2d\u65b7\u3002<\/p>\n          <\/div>\n        <\/div>\n\n        <div class=\"faq-item border border-border rounded-xl overflow-hidden\">\n          <button class=\"faq-btn w-full px-6 py-5 flex items-center justify-between text-left font-medium hover:bg-muted\/50 transition-colors\" aria-expanded=\"false\">\n            <span>\u9ede\u6a23\u958b\u59cb\u5408\u4f5c\uff1f<\/span>\n            <i data-lucide=\"chevron-down\" class=\"w-5 h-5 text-accent faq-icon transition-transform\"><\/i>\n          <\/button>\n          <div class=\"faq-content px-6 pb-5 hidden\">\n            <p class=\"text-secondary text-sm\">\u53ea\u9700\u586b\u5beb\u4e0a\u9762\u5605\u806f\u7d61\u8868\u683c\u6216\u76f4\u63a5\u6253\u4ffe\u6211\u54cb\u3002\u6211\u54cb\u6703\u5b89\u6392\u514d\u8cbb\u8aee\u8a62\uff0c\u4e86\u89e3\u4f60\u5605\u9700\u6c42\u5f8c\u518d\u63d0\u4f9b\u5efa\u8b70\u3002<\/p>\n          <\/div>\n        <\/div>\n\n        <div class=\"faq-item border border-border rounded-xl overflow-hidden\">\n          <button class=\"faq-btn w-full px-6 py-5 flex items-center justify-between text-left font-medium hover:bg-muted\/50 transition-colors\" aria-expanded=\"false\">\n            <span>\u4f60\u54cb\u5605\u5217\u5370\u8207\u6587\u4ef6\u5b89\u5168\u65b9\u6848\u662f\u5426\u7b26\u5408 ISO \/ GDPR \/ \u9999\u6e2f PDPO\uff1f<\/span>\n            <i data-lucide=\"chevron-down\" class=\"w-5 h-5 text-accent faq-icon transition-transform\"><\/i>\n          <\/button>\n          <div class=\"faq-content px-6 pb-5 hidden\">\n            <p class=\"text-secondary text-sm\">\u6211\u54cb\u5605\u65b9\u6848\u8a2d\u8a08\u7b26\u5408 ISO 27001 \u8cc7\u8a0a\u5b89\u5168\u6a19\u6e96\uff0c\u4e26\u9075\u5faa\u9999\u6e2f\u300a\u500b\u4eba\u8cc7\u6599\uff08\u79c1\u96b1\uff09\u689d\u4f8b\u300b(PDPO) \u53ca GDPR \u8981\u6c42\u3002\u6240\u6709\u6253\u5370\u6d3b\u52d5\u5747\u8a2d\u6709\u5b8c\u6574 Audit Log\uff0c\u652f\u63f4\u5408\u898f\u5be9\u8a08\u3002<\/p>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- PARTNERS -->\n  <section class=\"py-20 border-y border-border relative overflow-hidden\">\n    <div class=\"absolute inset-0 bg-gradient-to-r from-accent\/5 via-transparent to-accentAlt\/5\"><\/div>\n    <div class=\"max-w-5xl mx-auto px-6 relative\">\n      <p class=\"text-center text-sm text-secondary mb-10\">\u5408\u4f5c\u5925\u4f34<\/p>\n      <div class=\"flex flex-wrap justify-center items-center gap-10 text-secondary\/50 stagger\">\n        <span class=\"text-xl font-bold hover:text-accent transition-colors cursor-default partner-logo\">Xerox<\/span>\n        <span class=\"text-xl font-bold hover:text-accent transition-colors cursor-default partner-logo\">Lexmark<\/span>\n        <span class=\"text-xl font-bold hover:text-accentAlt transition-colors cursor-default partner-logo\">HGC<\/span>\n        <span class=\"text-xl font-bold hover:text-accentAlt transition-colors cursor-default partner-logo\">HKBN<\/span>\n        <span class=\"text-xl font-bold hover:text-accent transition-colors cursor-default partner-logo\">Lenovo<\/span>\n      <\/div>\n    <\/div>\n  <\/section>\n\n  <!-- CONTACT -->\n<section id=\"contact\" class=\"py-28 relative overflow-hidden\">\n  <div class=\"absolute right-0 top-1\/2 -translate-y-1\/2 w-96 h-96 bg-accent\/5 rounded-full blur-3xl\"><\/div>\n\n  <div class=\"max-w-4xl mx-auto px-6 relative\">\n    <div class=\"grid lg:grid-cols-2 gap-16\">\n      <div class=\"reveal\">\n        <span class=\"text-xs font-medium text-accent uppercase tracking-wider\">\u958b\u59cb\u5c0d\u8a71<\/span>\n        <h2 class=\"text-3xl md:text-4xl font-bold mt-3 mb-4\">\u60f3\u4e86\u89e3\u66f4\u591a\uff1f<\/h2>\n        <p class=\"text-secondary mb-8\">\u6b61\u8fce\u8207\u6211\u5011\u5c0d\u8a71\uff0c\u4e86\u89e3\u4f60\u73fe\u6709\u7cfb\u7d71\u3001\u6210\u672c\u8207\u5347\u7d1a\u65b9\u5411\u3002<\/p>\n\n        <!-- Contact image -->\n        <div class=\"img-zoom rounded-2xl overflow-hidden\">\n          <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1553877522-43269d4ea984?w=600&#038;q=80\" alt=\"\u806f\u7d61 LSHK \u4f01\u696d\u8aee\u8a62\u5718\u968a\" class=\"w-full aspect-video object-cover\">\n        <\/div>\n      <\/div>\n\n      <!-- HubSpot Form Container -->\n      <div class=\"reveal bg-white rounded-2xl border border-border p-6 md:p-8 shadow-sm\" style=\"transition-delay: 0.1s;\">\n        <!-- HubSpot \u5d4c\u5165\u8173\u672c -->\n        <script charset=\"utf-8\" type=\"text\/javascript\" src=\"\/\/js.hsforms.net\/forms\/embed\/v2.js\"><\/script>\n        <script>\n          hbspt.forms.create({\n            region: \"na1\",\n            portalId: \"47496038\",\n            formId: \"acad0184-d863-4d56-be41-8267d4c21b56\",\n            target: \"#hubspot-form-container\"\n          });\n        <\/script>\n\n        <!-- \u8868\u55ae\u5bb9\u5668\uff08\u6b63\u78ba\u7d50\u69cb\uff1a\u8f09\u5165\u63d0\u793a\u5728\u5bb9\u5668\u5167\uff09 -->\n        <div id=\"hubspot-form-container\">\n          <!-- HubSpot \u8868\u55ae\u5c07\u6703\u6e32\u67d3\u5728\u6b64 -->\n          <div class=\"text-center py-12 text-secondary\">\n            <div class=\"animate-pulse mb-4\">\n              <i data-lucide=\"loader-2\" class=\"w-8 h-8 mx-auto text-accent\"><\/i>\n            <\/div>\n            <p class=\"text-sm\">\u6b63\u5728\u8f09\u5165\u806f\u7d61\u8868\u683c&#8230;<\/p>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n  <!-- LEGAL DISCLAIMER -->\n  <section class=\"py-8 bg-muted border-t border-border\">\n    <div class=\"max-w-4xl mx-auto px-6 text-center\">\n      <p class=\"text-xs text-secondary\/70 leading-relaxed\">\n        Lexmark \u70ba Lexmark International, Inc. \u4e4b\u8a3b\u518a\u5546\u6a19\u3002Lexmark Solutions Hong Kong Limited \u70ba\u7368\u7acb\u71df\u904b\u4e4b\u89e3\u6c7a\u65b9\u6848\u4f9b\u61c9\u5546\uff0c\u8207 Lexmark \u6388\u6b0a\u7522\u54c1\u53ca\u6280\u8853\u9032\u884c\u6574\u5408\u670d\u52d9\u3002\u5176\u4ed6\u63d0\u53ca\u4e4b\u5546\u6a19\u5747\u70ba\u5176\u5404\u81ea\u64c1\u6709\u8005\u4e4b\u8ca1\u7522\u3002\n      <\/p>\n    <\/div>\n  <\/section>\n\n<\/main>\n\n<!-- Back to Top -->\n<button id=\"back-to-top\" class=\"back-to-top fixed bottom-6 right-6 w-12 h-12 bg-gradient-to-br from-accent to-accentAlt text-white rounded-full shadow-lg flex items-center justify-center z-40\" aria-label=\"\u8fd4\u56de\u9802\u90e8\">\n  <i data-lucide=\"arrow-up\" class=\"w-5 h-5\"><\/i>\n<\/button>\n\n<script>\n  window.addEventListener('DOMContentLoaded', () => {\n    lucide.createIcons();\n\n    \/\/ Scroll progress bar\n    const scrollProgress = document.getElementById('scroll-progress');\n    window.addEventListener('scroll', () => {\n      const scrollTop = window.scrollY;\n      const docHeight = document.documentElement.scrollHeight - window.innerHeight;\n      const scrollPercent = (scrollTop \/ docHeight) * 100;\n      scrollProgress.style.width = scrollPercent + '%';\n    });\n\n    \/\/ Reveal animations\n    const revealElements = document.querySelectorAll('.reveal, .stagger');\n    const observer = new IntersectionObserver((entries) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add('active');\n        }\n      });\n    }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });\n    revealElements.forEach(el => observer.observe(el));\n\n    \/\/ Counter animation\n    const counters = document.querySelectorAll('.counter');\n    const counterObserver = new IntersectionObserver((entries) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          const counter = entry.target;\n          const target = parseInt(counter.dataset.target);\n          const duration = 1500;\n          const step = target \/ (duration \/ 16);\n          let current = 0;\n          const update = () => {\n            current += step;\n            if (current < target) {\n              counter.textContent = Math.round(current);\n              requestAnimationFrame(update);\n            } else {\n              counter.textContent = target;\n            }\n          };\n          update();\n          counterObserver.unobserve(counter);\n        }\n      });\n    }, { threshold: 0.5 });\n    counters.forEach(c => counterObserver.observe(c));\n\n    \/\/ Back to top\n    const backToTop = document.getElementById('back-to-top');\n    window.addEventListener('scroll', () => {\n      if (window.scrollY > 400) {\n        backToTop.classList.add('visible');\n      } else {\n        backToTop.classList.remove('visible');\n      }\n    });\n    backToTop.addEventListener('click', () => {\n      window.scrollTo({ top: 0, behavior: 'smooth' });\n    });\n\n    \/\/ FAQ accordion\n    const faqItems = document.querySelectorAll('.faq-item');\n    faqItems.forEach(item => {\n      const btn = item.querySelector('.faq-btn');\n      const content = item.querySelector('.faq-content');\n      btn.addEventListener('click', () => {\n        const isOpen = item.classList.contains('open');\n        \/\/ Close all\n        faqItems.forEach(i => {\n          i.classList.remove('open');\n          i.querySelector('.faq-btn').setAttribute('aria-expanded', 'false');\n          i.querySelector('.faq-content').classList.add('hidden');\n        });\n        \/\/ Toggle current\n        if (!isOpen) {\n          item.classList.add('open');\n          btn.setAttribute('aria-expanded', 'true');\n          content.classList.remove('hidden');\n        }\n      });\n    });\n\n    \/\/ Parallax effect on hero decorative elements\n    const heroSection = document.querySelector('section');\n    if (heroSection) {\n        const blobs = heroSection.querySelectorAll('.pulse-glow');\n        window.addEventListener('mousemove', (e) => {\n        const x = (e.clientX \/ window.innerWidth - 0.5) * 20;\n        const y = (e.clientY \/ window.innerHeight - 0.5) * 20;\n        blobs.forEach((blob, i) => {\n            const factor = i === 0 ? 1 : -1;\n            blob.style.transform = `translate(${x * factor}px, ${y * factor}px)`;\n        });\n        });\n    }\n  });\n<\/script>\n<\/body>\n<\/html>\n\n\n\n<!-- SEO Schema Markup -->\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@graph\": [\n    {\n      \"@type\": \"Organization\",\n      \"@id\": \"https:\/\/www.lexmark-hk.com\/#organization\",\n      \"name\": \"Lexmark Solutions Hong Kong Limited\",\n      \"alternateName\": \"LSHK\",\n      \"url\": \"https:\/\/www.lexmark-hk.com\/\",\n      \"logo\": \"https:\/\/www.lexmark-hk.com\/logo.png\",\n      \"description\": \"Lexmark Solutions Hong Kong Limited \u63d0\u4f9b\u4f01\u696dIT\u670d\u52d9\u3001\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u57fa\u790e\u8a2d\u65bd\u53ca\u8cc7\u8a0a\u5b89\u5168\u89e3\u6c7a\u65b9\u6848\u3002\u96b8\u5c6c Beesee Technology \u96c6\u5718\uff0c\u540c\u6642\u70ba Lexmark \u6388\u6b0a\u5408\u4f5c\u5925\u4f34\u3002\",\n      \"contactPoint\": [\n        {\n          \"@type\": \"ContactPoint\",\n          \"contactType\": \"sales\",\n          \"url\": \"https:\/\/www.lexmark-hk.com\/#contact\",\n          \"areaServed\": \"HK\",\n          \"availableLanguage\": [\"Cantonese\", \"Mandarin\", \"English\"]\n        },\n        {\n          \"@type\": \"ContactPoint\",\n          \"contactType\": \"customer support\",\n          \"telephone\": \"+852-2180-2508\",\n          \"email\": \"hello@lexmark-hk.com\",\n          \"areaServed\": \"HK\",\n          \"availableLanguage\": [\"Cantonese\", \"Mandarin\", \"English\"]\n        }\n      ],\n      \"memberOf\": [\n        {\n          \"@type\": \"Organization\",\n          \"name\": \"Beesee Technology Limited\"\n        }\n      ],\n      \"award\": [\n        \"Lexmark Authorized Partner\"\n      ],\n      \"sameAs\": [\n        \"https:\/\/www.linkedin.com\/company\/lexmark-solutions-hong-kong\"\n      ]\n    },\n    {\n      \"@type\": \"LocalBusiness\",\n      \"@id\": \"https:\/\/www.lexmark-hk.com\/#localbusiness\",\n      \"name\": \"Lexmark Solutions Hong Kong Limited\",\n      \"image\": \"https:\/\/images.unsplash.com\/photo-1497366216548-37526070297c?w=1200&q=80\",\n      \"url\": \"https:\/\/www.lexmark-hk.com\/\",\n      \"telephone\": \"+852-2180-2508\",\n      \"email\": \"hello@lexmark-hk.com\",\n      \"address\": {\n        \"@type\": \"PostalAddress\",\n        \"streetAddress\": \"UNIT D, 8\/F, SKYLINE TOWER, 18 Tong Mi Road, Mong Kok\",\n        \"addressLocality\": \"Hong Kong\",\n        \"addressRegion\": \"Kowloon\",\n        \"addressCountry\": \"HK\"\n      },\n      \"openingHoursSpecification\": {\n        \"@type\": \"OpeningHoursSpecification\",\n        \"dayOfWeek\": [\n          \"Monday\",\n          \"Tuesday\",\n          \"Wednesday\",\n          \"Thursday\",\n          \"Friday\"\n        ],\n        \"opens\": \"09:00\",\n        \"closes\": \"18:00\"\n      },\n      \"areaServed\": {\n        \"@type\": \"AdministrativeArea\",\n        \"name\": \"Hong Kong\"\n      },\n      \"availableLanguage\": [\n        \"Cantonese\",\n        \"Mandarin\",\n        \"English\"\n      ],\n      \"paymentAccepted\": [\n        \"Visa\",\n        \"MasterCard\",\n        \"American Express\",\n        \"Bank Transfer\",\n        \"Cash On Delivery\"\n      ],\n      \"priceRange\": \"$$$\"\n    },\n    {\n      \"@type\": \"ContactPage\",\n      \"@id\": \"https:\/\/www.lexmark-hk.com\/#contactpage\",\n      \"url\": \"https:\/\/www.lexmark-hk.com\/#contact\",\n      \"name\": \"\u806f\u7d61\u6211\u5011 | Lexmark Solutions Hong Kong Limited\",\n      \"description\": \"\u6b61\u8fce\u806f\u7d61 Lexmark Solutions Hong Kong Limited \u67e5\u8a62\u4f01\u696dIT\u670d\u52d9\u3001\u6258\u7ba1\u6253\u5370\u3001\u96f2\u7aef\u65b9\u6848\u53ca\u8cc7\u8a0a\u5b89\u5168\u3002\u6211\u5011\u63d0\u4f9b\u65b0\u5ba2\u6236\u8aee\u8a62\u53ca\u73fe\u6709\u5ba2\u6236\u652f\u63f4\u670d\u52d9\u3002\",\n      \"mainEntity\": {\n        \"@type\": \"Organization\",\n        \"@id\": \"https:\/\/www.lexmark-hk.com\/#organization\"\n      }\n    },\n    {\n      \"@type\": \"FAQPage\",\n      \"@id\": \"https:\/\/www.lexmark-hk.com\/#faqpage\",\n      \"url\": \"https:\/\/www.lexmark-hk.com\/#faq\",\n      \"name\": \"\u5e38\u898b\u554f\u984c | Lexmark Solutions Hong Kong Limited\",\n      \"mainEntity\": [\n        {\n          \"@type\": \"Question\",\n          \"name\": \"LSHK \u4e3b\u8981\u670d\u52d9\u9999\u6e2f\u9084\u662f\u5176\u4ed6\u5730\u5340\uff1f\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"\u6211\u5011\u4e3b\u8981\u670d\u52d9\u9999\u6e2f\u5e02\u5834\uff0c\u4f46\u900f\u904e Beesee Technology \u96c6\u5718\u8cc7\u6e90\uff0c\u4ea6\u53ef\u652f\u63f4\u5927\u7063\u5340\u53ca\u4e9e\u592a\u5340\u4f01\u696d\u3002\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"\u6700\u4f4e\u670d\u52d9\u5408\u7d04\u671f\u4fc2\u5e7e\u9577\uff1f\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"\u6211\u5011\u63d0\u4f9b\u5f48\u6027\u5408\u7d04\u9078\u9805\uff0c\u7531\u6309\u6b21\u6536\u8cbb\u5230\u5e74\u5ea6\u5408\u7d04\u90fd\u6709\u3002\u6703\u6839\u64da\u4f60\u5605\u5be6\u969b\u9700\u8981\u63d0\u4f9b\u6700\u5408\u9069\u5605\u65b9\u6848\u3002\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"\u53ef\u4ee5\u63d0\u4f9b\u7dca\u6025\u652f\u63f4\u55ce\uff1f\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"\u53ef\u4ee5\uff01\u6211\u5011\u63d0\u4f9b 7\u00d724 \u7dca\u6025\u652f\u63f4\u71b1\u7dda\uff0c\u78ba\u4fdd\u4f60\u5605\u696d\u52d9\u5514\u6703\u56e0\u70ba IT \u554f\u984c\u800c\u4e2d\u65b7\u3002\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"\u9ede\u6a23\u958b\u59cb\u5408\u4f5c\uff1f\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"\u53ea\u9700\u586b\u5beb\u806f\u7d61\u8868\u683c\u6216\u76f4\u63a5\u6253\u4ffe\u6211\u54cb\u3002\u6211\u54cb\u6703\u5b89\u6392\u514d\u8cbb\u8aee\u8a62\uff0c\u4e86\u89e3\u4f60\u5605\u9700\u6c42\u5f8c\u518d\u63d0\u4f9b\u5efa\u8b70\u3002\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"\u4f60\u54cb\u5605\u5217\u5370\u8207\u6587\u4ef6\u5b89\u5168\u65b9\u6848\u662f\u5426\u7b26\u5408 ISO \/ GDPR \/ \u9999\u6e2f PDPO\uff1f\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"\u6211\u54cb\u5605\u65b9\u6848\u8a2d\u8a08\u7b26\u5408 ISO 27001 \u8cc7\u8a0a\u5b89\u5168\u6a19\u6e96\uff0c\u4e26\u9075\u5faa\u9999\u6e2f\u300a\u500b\u4eba\u8cc7\u6599\uff08\u79c1\u96b1\uff09\u689d\u4f8b\u300b(PDPO) \u53ca GDPR \u8981\u6c42\u3002\u6240\u6709\u6253\u5370\u6d3b\u52d5\u5747\u8a2d\u6709\u5b8c\u6574 Audit Log\uff0c\u652f\u63f4\u5408\u898f\u5be9\u8a08\u3002\"\n          }\n        }\n      ]\n    },\n    {\n      \"@type\": \"ProfessionalService\",\n      \"@id\": \"https:\/\/www.lexmark-hk.com\/#service\",\n      \"name\": \"\u4f01\u696dIT\u89e3\u6c7a\u65b9\u6848\u670d\u52d9\",\n      \"description\": \"Lexmark Solutions Hong Kong Limited \u63d0\u4f9b\u5168\u65b9\u4f4d\u4f01\u696dIT\u670d\u52d9\uff0c\u5305\u62ec\u6258\u7ba1\u6253\u5370\u670d\u52d9(MPS)\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u3001\u8cc7\u8a0a\u5b89\u5168\u3001\u7db2\u7d61\u57fa\u790e\u8a2d\u65bd\u53ca\u696d\u52d9\u6d41\u7a0b\u81ea\u52d5\u5316\u3002\",\n      \"provider\": {\n        \"@type\": \"Organization\",\n        \"@id\": \"https:\/\/www.lexmark-hk.com\/#organization\"\n      },\n      \"areaServed\": {\n        \"@type\": \"AdministrativeArea\",\n        \"name\": \"Hong Kong\"\n      },\n      \"hasOfferCatalog\": {\n        \"@type\": \"OfferCatalog\",\n        \"name\": \"\u4f01\u696dIT\u670d\u52d9\u76ee\u9304\",\n        \"itemListElement\": [\n          {\n            \"@type\": \"Offer\",\n            \"itemOffered\": {\n              \"@type\": \"Service\",\n              \"name\": \"\u6258\u7ba1\u6253\u5370\u670d\u52d9 (MPS)\"\n            }\n          },\n          {\n            \"@type\": \"Offer\",\n            \"itemOffered\": {\n              \"@type\": \"Service\",\n              \"name\": \"\u96f2\u7aef\u5217\u5370\u7ba1\u7406\"\n            }\n          },\n          {\n            \"@type\": \"Offer\",\n            \"itemOffered\": {\n              \"@type\": \"Service\",\n              \"name\": \"\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\"\n            }\n          },\n          {\n            \"@type\": \"Offer\",\n            \"itemOffered\": {\n              \"@type\": \"Service\",\n              \"name\": \"\u7db2\u7d61\u57fa\u790e\u8a2d\u65bd\"\n            }\n          },\n          {\n            \"@type\": \"Offer\",\n            \"itemOffered\": {\n              \"@type\": \"Service\",\n              \"name\": \"\u4f01\u696dAI\u6574\u5408\"\n            }\n          }\n        ]\n      }\n    },\n    {\n      \"@type\": \"BreadcrumbList\",\n      \"@id\": \"https:\/\/www.lexmark-hk.com\/#breadcrumb\",\n      \"itemListElement\": [\n        {\n          \"@type\": \"ListItem\",\n          \"position\": 1,\n          \"name\": \"\u9996\u9801\",\n          \"item\": \"https:\/\/www.lexmark-hk.com\/\"\n        },\n        {\n          \"@type\": \"ListItem\",\n          \"position\": 2,\n          \"name\": \"\u95dc\u65bc\u6211\u5011\",\n          \"item\": \"https:\/\/www.lexmark-hk.com\/#about\"\n        },\n        {\n          \"@type\": \"ListItem\",\n          \"position\": 3,\n          \"name\": \"\u806f\u7d61\u6211\u5011\",\n          \"item\": \"https:\/\/www.lexmark-hk.com\/#contact\"\n        }\n      ]\n    }\n  ]\n}\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>\u95dc\u65bc\u6211\u5011 | Lexmark Solutions Hong Kong Limited (LSHK) About\u2026<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"content-type":"","footnotes":""},"class_list":["post-4579","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u95dc\u65bcLSHK | Lexmark\u9999\u6e2f\u6388\u6b0a\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u3001IT\u57fa\u790e\u67b6\u69cb\u3001\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848<\/title>\n<meta name=\"description\" content=\"\u5f9e\u6253\u5370\u5c08\u5bb6\u5230\u4f01\u696dAI\u5925\u4f34\u3002LSHK\u70ba\u9999\u6e2f\u4f01\u696d\u63d0\u4f9b\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u53ca\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\u300210\u5e74\u670d\u52d9300+\u4f01\u696d\u7d93\u9a57\u3002\u9810\u7d04\u514d\u8cbbIT\u8a55\u4f30\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/\" \/>\n<meta property=\"og:locale\" content=\"zh_HK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u95dc\u65bcLSHK | Lexmark\u9999\u6e2f\u6388\u6b0a\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u3001IT\u57fa\u790e\u67b6\u69cb\u3001\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\" \/>\n<meta property=\"og:description\" content=\"\u5f9e\u6253\u5370\u5c08\u5bb6\u5230\u4f01\u696dAI\u5925\u4f34\u3002LSHK\u70ba\u9999\u6e2f\u4f01\u696d\u63d0\u4f9b\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u53ca\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\u300210\u5e74\u670d\u52d9300+\u4f01\u696d\u7d93\u9a57\u3002\u9810\u7d04\u514d\u8cbbIT\u8a55\u4f30\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/\" \/>\n<meta property=\"og:site_name\" content=\"LSHK - Lexmark \u5b98\u65b9\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u53ca IT \u89e3\u6c7a\u65b9\u6848\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/lshk.printer\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-25T08:56:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/images.unsplash.com\/photo-1522071820081-009f0129c71c?w=600&q=80\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9810\u8a08\u95b1\u8b80\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/\",\"url\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/\",\"name\":\"\u95dc\u65bcLSHK | Lexmark\u9999\u6e2f\u6388\u6b0a\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u3001IT\u57fa\u790e\u67b6\u69cb\u3001\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1522071820081-009f0129c71c?w=600&q=80\",\"datePublished\":\"2026-01-22T12:00:51+00:00\",\"dateModified\":\"2026-01-25T08:56:59+00:00\",\"description\":\"\u5f9e\u6253\u5370\u5c08\u5bb6\u5230\u4f01\u696dAI\u5925\u4f34\u3002LSHK\u70ba\u9999\u6e2f\u4f01\u696d\u63d0\u4f9b\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u53ca\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\u300210\u5e74\u670d\u52d9300+\u4f01\u696d\u7d93\u9a57\u3002\u9810\u7d04\u514d\u8cbbIT\u8a55\u4f30\u3002\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/#breadcrumb\"},\"inLanguage\":\"zh-HK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-HK\",\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/#primaryimage\",\"url\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1522071820081-009f0129c71c?w=600&q=80\",\"contentUrl\":\"https:\\\/\\\/images.unsplash.com\\\/photo-1522071820081-009f0129c71c?w=600&q=80\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/about-us\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u95dc\u65bc\u6211\u5011\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/#website\",\"url\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/\",\"name\":\"LSHK - Lexmark \u5b98\u65b9\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u53ca IT \u89e3\u6c7a\u65b9\u6848\",\"description\":\"\u8b93\u6211\u5011\u52a9\u60a8\u5c08\u6ce8\u696d\u52d9\u589e\u9577\u3002\",\"publisher\":{\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-HK\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/#organization\",\"name\":\"Lexmark Solutions Hong Kong Ltd\",\"alternateName\":\"BeeSee Technology Limited\",\"url\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-HK\",\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Lexmark Solutions Hong Kong Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/lexmark-hk.com\\\/zh-hant\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/lshk.printer\",\"http:\\\/\\\/instagram.com\\\/lshk.printer\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u95dc\u65bcLSHK | Lexmark\u9999\u6e2f\u6388\u6b0a\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u3001IT\u57fa\u790e\u67b6\u69cb\u3001\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848","description":"\u5f9e\u6253\u5370\u5c08\u5bb6\u5230\u4f01\u696dAI\u5925\u4f34\u3002LSHK\u70ba\u9999\u6e2f\u4f01\u696d\u63d0\u4f9b\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u53ca\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\u300210\u5e74\u670d\u52d9300+\u4f01\u696d\u7d93\u9a57\u3002\u9810\u7d04\u514d\u8cbbIT\u8a55\u4f30\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/","og_locale":"zh_HK","og_type":"article","og_title":"\u95dc\u65bcLSHK | Lexmark\u9999\u6e2f\u6388\u6b0a\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u3001IT\u57fa\u790e\u67b6\u69cb\u3001\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848","og_description":"\u5f9e\u6253\u5370\u5c08\u5bb6\u5230\u4f01\u696dAI\u5925\u4f34\u3002LSHK\u70ba\u9999\u6e2f\u4f01\u696d\u63d0\u4f9b\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u53ca\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\u300210\u5e74\u670d\u52d9300+\u4f01\u696d\u7d93\u9a57\u3002\u9810\u7d04\u514d\u8cbbIT\u8a55\u4f30\u3002","og_url":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/","og_site_name":"LSHK - Lexmark \u5b98\u65b9\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u53ca IT \u89e3\u6c7a\u65b9\u6848","article_publisher":"https:\/\/www.facebook.com\/lshk.printer","article_modified_time":"2026-01-25T08:56:59+00:00","og_image":[{"url":"https:\/\/images.unsplash.com\/photo-1522071820081-009f0129c71c?w=600&q=80","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"\u9810\u8a08\u95b1\u8b80\u6642\u9593":"3 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/","url":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/","name":"\u95dc\u65bcLSHK | Lexmark\u9999\u6e2f\u6388\u6b0a\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u3001IT\u57fa\u790e\u67b6\u69cb\u3001\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848","isPartOf":{"@id":"https:\/\/lexmark-hk.com\/zh-hant\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/#primaryimage"},"image":{"@id":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/#primaryimage"},"thumbnailUrl":"https:\/\/images.unsplash.com\/photo-1522071820081-009f0129c71c?w=600&q=80","datePublished":"2026-01-22T12:00:51+00:00","dateModified":"2026-01-25T08:56:59+00:00","description":"\u5f9e\u6253\u5370\u5c08\u5bb6\u5230\u4f01\u696dAI\u5925\u4f34\u3002LSHK\u70ba\u9999\u6e2f\u4f01\u696d\u63d0\u4f9b\u6258\u7ba1\u6253\u5370\u670d\u52d9\u3001\u96f2\u7aef\u5217\u5370\u7ba1\u7406\u53ca\u8cc7\u8a0a\u5b89\u5168\u65b9\u6848\u300210\u5e74\u670d\u52d9300+\u4f01\u696d\u7d93\u9a57\u3002\u9810\u7d04\u514d\u8cbbIT\u8a55\u4f30\u3002","breadcrumb":{"@id":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/#breadcrumb"},"inLanguage":"zh-HK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lexmark-hk.com\/zh-hant\/about-us\/"]}]},{"@type":"ImageObject","inLanguage":"zh-HK","@id":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/#primaryimage","url":"https:\/\/images.unsplash.com\/photo-1522071820081-009f0129c71c?w=600&q=80","contentUrl":"https:\/\/images.unsplash.com\/photo-1522071820081-009f0129c71c?w=600&q=80"},{"@type":"BreadcrumbList","@id":"https:\/\/lexmark-hk.com\/zh-hant\/about-us\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lexmark-hk.com\/zh-hant\/"},{"@type":"ListItem","position":2,"name":"\u95dc\u65bc\u6211\u5011"}]},{"@type":"WebSite","@id":"https:\/\/lexmark-hk.com\/zh-hant\/#website","url":"https:\/\/lexmark-hk.com\/zh-hant\/","name":"LSHK - Lexmark \u5b98\u65b9\u5925\u4f34 | \u6253\u5370\u6a5f\u6708\u8cbb\u53ca IT \u89e3\u6c7a\u65b9\u6848","description":"\u8b93\u6211\u5011\u52a9\u60a8\u5c08\u6ce8\u696d\u52d9\u589e\u9577\u3002","publisher":{"@id":"https:\/\/lexmark-hk.com\/zh-hant\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lexmark-hk.com\/zh-hant\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-HK"},{"@type":"Organization","@id":"https:\/\/lexmark-hk.com\/zh-hant\/#organization","name":"Lexmark Solutions Hong Kong Ltd","alternateName":"BeeSee Technology Limited","url":"https:\/\/lexmark-hk.com\/zh-hant\/","logo":{"@type":"ImageObject","inLanguage":"zh-HK","@id":"https:\/\/lexmark-hk.com\/zh-hant\/#\/schema\/logo\/image\/","url":"","contentUrl":"","caption":"Lexmark Solutions Hong Kong Ltd"},"image":{"@id":"https:\/\/lexmark-hk.com\/zh-hant\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/lshk.printer","http:\/\/instagram.com\/lshk.printer"]}]}},"_links":{"self":[{"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/pages\/4579","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/comments?post=4579"}],"version-history":[{"count":14,"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/pages\/4579\/revisions"}],"predecessor-version":[{"id":4596,"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/pages\/4579\/revisions\/4596"}],"wp:attachment":[{"href":"https:\/\/lexmark-hk.com\/zh-hant\/wp-json\/wp\/v2\/media?parent=4579"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}