{"id":23,"date":"2022-06-21T19:20:04","date_gmt":"2022-06-21T19:20:04","guid":{"rendered":"https:\/\/clockwork.galaxyweblinks.com\/?page_id=14"},"modified":"2026-02-03T17:35:06","modified_gmt":"2026-02-03T17:35:06","slug":"services","status":"publish","type":"page","link":"https:\/\/www.clockwork.com\/services\/","title":{"rendered":"Services"},"content":{"rendered":"\n<div class=\"block hero-banner image rounded\" id=\"heroBanner\" style=\"background-color: #161616; background-image: url(https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/11\/pattern-outlined-.5pt.svg);\">\n\n\n\n  <div class=\"grid-container\">\n    <div class=\"grid-x grid-margin-x\">\n      <div class=\"cell small-12 large-7\">\n\n                  <div class=\"banner-content\" style=\"color: #ffffff\" >\n            <h1><span>Digital expertise delivered by real smart (and nice) people for<\/span> over 20 years.<\/h1>\n          <\/div>\n        \n        \n      <\/div>\n\n      <div class=\"cell small-12 large-5\">\n        \n          <div class=\"mask-container image rounded\" id=\"maskContainer\">\n\n          \n                      <div class=\"mask rounded\">\n                                <img decoding=\"async\" class=\"mask-image\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/expertise_header-image-1280x720.jpg\" alt=\"Digital strategy consultant is seated at a table with her laptop while attending a virtual meeting to discuss the services Clockwork offers\" \/>\n                          <\/div>\n          \n          <\/div>\n        \n      <\/div>\n    <\/div>\n  <\/div>\n\n<\/div>\n\n<script src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\n\n<script>\n  const videoPlayer = document.getElementById('videoPlayer');\n  const videoPlayerButton = document.getElementById('videoPlayerButton');\n  const mask = document.getElementById(\"mask\");\n\n  if (videoPlayer.dataset.videoSource === \"youtube\") {\n    \/\/ https:\/\/developers.google.com\/youtube\/iframe_api_reference#Example_Video_Player_Constructors\n    var tag = document.createElement('script');\n    tag.src = 'https:\/\/www.youtube.com\/iframe_api';\n    var firstScriptTag = document.getElementsByTagName('script')[0];\n    firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\n\n    var player;\n    function onYouTubeIframeAPIReady() {\n      player = new YT.Player('videoPlayer', {\n        videoId: videoPlayer.dataset.videoId,\n        playerVars: { \n          'autoplay': 1,\n          'controls': 1,\n          'loop': 1,\n          'mute': 1,\n          'rel': 0,\n        },\n      });\n    }\n\n    function handleClick() {\n      \/\/ heroBanner.classList.add(\"play\");\n      let maskContainer = event.target.parentNode;\n      if(maskContainer.classList.contains(\"play\")) {\n        maskContainer.classList.remove(\"play\");\n        mask.classList.remove(\"play\");\n        player.seekTo(0);\n        player.mute();\n      } else {\n        maskContainer.classList.add(\"play\");\n        mask.classList.add(\"play\");\n        player.seekTo(0);\n        player.unMute();\n      }\n    }\n\n    videoPlayerButton.onclick = function(){ handleClick() };\n\n    new Waypoint({\n      element: videoPlayer,\n      handler: function(direction) {\n        if(direction == 'down') {\n          player.pauseVideo();\n          this.destroy();\n        }\n      },\n      offset: '-100%'\n    })\n  }\n\n  if (videoPlayer.dataset.videoSource === \"vimeo\") {\n    \/\/ https:\/\/developer.vimeo.com\/player\/sdk\n    var backgroundIframe = document.getElementById('videoPlayerBackground');\n    var playingIframe = videoPlayer;\n    var backgroundPlayer = new Vimeo.Player(backgroundIframe);\n    var player = new Vimeo.Player(playingIframe);\n    var ccButton = document.getElementById('videoCCButton');\n    var captionsEnabled = false;\n    var availableTextTracks = null;\n\n    \/\/ Get available text tracks from the playing iframe (which supports captions)\n    player.getTextTracks().then(function(tracks) {\n      availableTextTracks = tracks;\n      console.log('Available text tracks:', tracks);\n      \n      \/\/ Prefer subtitles over captions, then find English track or first available track\n      var textTrack = tracks.find(function(track) {\n        return (track.language === 'en' || track.language.startsWith('en')) && track.kind === 'subtitles';\n      }) || tracks.find(function(track) {\n        return track.language === 'en' || track.language.startsWith('en');\n      }) || (tracks.length > 0 ? tracks[0] : null);\n      \n      if (textTrack) {\n        console.log('Selected text track:', textTrack);\n        \/\/ Store the language code for toggling\n        if (ccButton) {\n          ccButton.dataset.trackLanguage = textTrack.language;\n          ccButton.dataset.trackKind = textTrack.kind || 'subtitles';\n        }\n      } else {\n        console.log('No text tracks available');\n      }\n    }).catch(function(error) {\n      console.log('Error getting text tracks:', error);\n    });\n\n    function handleClick() {\n      \/\/ heroBanner.classList.add(\"play\");\n      \n      \n    }\n\n    videoPlayerButton.onclick = function(){\n      let maskContainer = event.target.parentNode;\n      console.log(maskContainer);\n      if(maskContainer.classList.contains(\"play\")) {\n        \/\/ Switch back to background video\n        maskContainer.classList.remove(\"play\");\n        mask.classList.remove(\"play\");\n        player.pause();\n        backgroundIframe.style.display = 'block';\n        playingIframe.style.display = 'none';\n        \n        if (captionsEnabled) {\n          player.disableTextTrack().catch(function(error) {\n            console.log('Error disabling text track:', error);\n          });\n          captionsEnabled = false;\n        }\n        if (ccButton) {\n          ccButton.style.display = 'none';\n          ccButton.classList.remove('active');\n        }\n      } else {\n        \/\/ Switch to playing video\n        maskContainer.classList.add(\"play\");\n        mask.classList.add(\"play\");\n        backgroundIframe.style.display = 'none';\n        playingIframe.style.display = 'block';\n        \n        \/\/ Always start from the beginning\n        player.setCurrentTime(0);\n        player.setMuted(false);\n        player.play().catch(function(error) {\n          console.log('Error playing video:', error);\n        });\n        \n        \/\/ Show CC button if text tracks are available\n        if (ccButton && ccButton.dataset.trackLanguage) {\n          ccButton.style.display = 'block';\n        }\n        \n        \/\/ Re-enable captions if they were previously enabled\n        if (captionsEnabled && ccButton && ccButton.dataset.trackLanguage) {\n          setTimeout(function() {\n            var language = ccButton.dataset.trackLanguage;\n            var kind = ccButton.dataset.trackKind || 'subtitles';\n            player.enableTextTrack(language, kind).catch(function(error) {\n              player.enableTextTrack(language).catch(function(fallbackError) {\n                console.log('Error re-enabling captions after play:', fallbackError);\n              });\n            });\n          }, 300);\n        }\n      }\n    };\n\n    \/\/ CC toggle button handler - much simpler now with two iframes!\n    if (ccButton) {\n      ccButton.onclick = function(e) {\n        e.stopPropagation();\n        if (ccButton.dataset.trackLanguage) {\n          if (captionsEnabled) {\n            player.disableTextTrack().then(function() {\n              captionsEnabled = false;\n              ccButton.classList.remove('active');\n              console.log('Captions disabled');\n            }).catch(function(error) {\n              console.log('Error disabling text track:', error);\n            });\n          } else {\n            var language = ccButton.dataset.trackLanguage;\n            var kind = ccButton.dataset.trackKind || 'subtitles';\n            console.log('Enabling text track:', language, 'kind:', kind);\n            \n            \/\/ Ensure video is playing before enabling captions\n            player.getPaused().then(function(paused) {\n              if (paused) {\n                console.log('Video is paused, playing first...');\n                player.play().then(function() {\n                  enableCaptions();\n                });\n              } else {\n                enableCaptions();\n              }\n            });\n            \n            function enableCaptions() {\n              \/\/ Try with both language and kind\n              player.enableTextTrack(language, kind).then(function(track) {\n                captionsEnabled = true;\n                ccButton.classList.add('active');\n                console.log('Captions enabled successfully:', track);\n              }).catch(function(error) {\n                console.log('Error enabling text track with kind:', error);\n                \/\/ Try without kind parameter as fallback\n                player.enableTextTrack(language).then(function(track) {\n                  captionsEnabled = true;\n                  ccButton.classList.add('active');\n                  console.log('Captions enabled successfully (fallback):', track);\n                }).catch(function(fallbackError) {\n                  console.log('Error enabling text track (fallback):', fallbackError);\n                });\n              });\n            }\n          }\n        }\n      };\n    }\n\n    new Waypoint({\n      element: playingIframe,\n      handler: function(direction) {\n        if(direction == 'down') {\n          \/\/ Pause the playing video if it's visible\n          if (playingIframe.style.display !== 'none') {\n            player.pause();\n          }\n          this.destroy();\n        }\n      },\n      offset: '-100%'\n    })\n  }\n\n<\/script>\n\n\n\n<section class=\"link-collection-2\" aria-label=\"link collection\">\n  \n  <div class=\"new-container\">\n      \n      <div class=\"grid-x grid-margin-x align-justify\">\n        \n        <div class=\"cell small-12 medium-shrink\">\n\n                      <h2>Our Services<\/h2>\n          \n        <\/div>\n        \n      <\/div>\n      \n      <div class=\"flex-wrapper wrap\">\n\n                <div class=\"flex-2\">\n            <div class=\"links-box links-box-1\">\n\n              <img decoding=\"async\" class=\"link-collection-image\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2023\/09\/Strategy-Innovation-Change.svg\" alt=\"Digital strategy, Innovation, Change Management Services\" \/>\n                              <h3 class=\"link-collection-title h4\">\n                  <a class=\"fancy-link arrow-after\" aria-label=\"Click this link for Strategy, Innovation, &#038; Change landing page\" href=\"https:\/\/www.clockwork.com\/services\/strategy-innovation-change-enablement\/\" target=\"_self\">\n                    Strategy, Innovation, &#038; Change                  <\/a>\n                <\/h3>\n              \n              <ul class=\"inner-all-links-2\">                    <li><a class=\"link-label without-link\" >Strategic Change Enablement<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Product Strategy &#038; Stakeholder Adoption<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Content Strategy &#038; Governance<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Sales Enablement Solutions<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Artificial Intelligence Strategy &#038; Consulting<\/a><\/li>\n                                <\/ul>\n            <\/div>\n          <\/div>\n\n                <div class=\"flex-2\">\n            <div class=\"links-box links-box-2\">\n\n              <img decoding=\"async\" class=\"link-collection-image\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2023\/09\/Experience-Design.svg\" alt=\"Experience Design Services\" \/>\n                              <h3 class=\"link-collection-title h4\">\n                  <a class=\"fancy-link arrow-after\" aria-label=\"Click this link for Experience Design landing page\" href=\"https:\/\/www.clockwork.com\/services\/experience-design\/\" target=\"_self\">\n                    Experience Design                  <\/a>\n                <\/h3>\n              \n              <ul class=\"inner-all-links-2\">                    <li><a class=\"link-label without-link\" >User Experience (UX) Research &#038; Testing<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Interface Design &#038; Visual Design<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >User-Centered Customer Experience (CX)<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Usability &#038; Accessibility Consulting<\/a><\/li>\n                                <\/ul>\n            <\/div>\n          <\/div>\n\n                <div class=\"flex-2\">\n            <div class=\"links-box links-box-3\">\n\n              <img decoding=\"async\" class=\"link-collection-image\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2023\/09\/Technology-Engineering.svg\" alt=\"Custom technology and Engineering Services\" \/>\n                              <h3 class=\"link-collection-title h4\">\n                  <a class=\"fancy-link arrow-after\" aria-label=\"Click this link for Technology &#038; Engineering landing page\" href=\"https:\/\/www.clockwork.com\/services\/technology-engineering\/\" target=\"_self\">\n                    Technology &#038; Engineering                  <\/a>\n                <\/h3>\n              \n              <ul class=\"inner-all-links-2\">                    <li><a class=\"link-label without-link\" >Custom Software and Middleware Development<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Enterprise Mobile Application Solutions<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Full Stack Website Development &#038; CMS Solutions<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Infrastructure &#038; DevOps<\/a><\/li>\n                                <\/ul>\n            <\/div>\n          <\/div>\n\n                <div class=\"flex-2\">\n            <div class=\"links-box links-box-4\">\n\n              <img decoding=\"async\" class=\"link-collection-image\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2023\/09\/Maintenance-Support.svg\" alt=\"Website and Software maintenance and support services\" \/>\n                              <h3 class=\"link-collection-title h4\">\n                  <a class=\"fancy-link arrow-after\" aria-label=\"Click this link for Maintenance &#038; Support landing page\" href=\"https:\/\/www.clockwork.com\/services\/maintenance-support\/\" target=\"_self\">\n                    Maintenance &#038; Support                  <\/a>\n                <\/h3>\n              \n              <ul class=\"inner-all-links-2\">                    <li><a class=\"link-label without-link\" >Software Monitoring<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Enterprise-Level Support and Maintenance<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Scalable Support Services<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >Data-Driven Software Enhancements<\/a><\/li>\n                                <\/ul>\n            <\/div>\n          <\/div>\n\n                <div class=\"flex-2\">\n            <div class=\"links-box links-box-5\">\n\n              <img decoding=\"async\" class=\"link-collection-image\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2026\/02\/Ai-icon-resized.svg\" alt=\"\" \/>\n                              <h3 class=\"link-collection-title h4\">\n                  <a class=\"fancy-link arrow-after\" aria-label=\"Click this link for AI Consulting &amp; Solutions landing page\" href=\"https:\/\/www.clockwork.com\/services\/ai-consulting-solutions\/\" target=\"_self\">\n                    AI Consulting &amp; Solutions                  <\/a>\n                <\/h3>\n              \n              <ul class=\"inner-all-links-2\">                    <li><a class=\"link-label without-link\" >AI Readiness Diagnostic<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >AI Foundations Workshop<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >AI Strategy and Roadmap<\/a><\/li>\n                                                    <li><a class=\"link-label without-link\" >AI Solution Pilot<\/a><\/li>\n                                <\/ul>\n            <\/div>\n          <\/div>\n\n      \n    <\/div>\n\n    <div class=\"grid-x grid-margin-x\">\n      <div class=\"cell small-12\">\n\n        \n      <\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n\n<div class=\"wp-block-group alignfull gray-bg is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"content-slider-wrapper alignfull\" aria-label=\"content slider\">\n\t<div class=\"new-container\">\n\t\t<div class=\"flex-wrapper wrap\">\n\t\t\t<div class=\"flex-1\">\n\t\t\t\t\t\t\t\t\t<h5>A people-centered approach to problem-solving<\/h5>\n\t\t\t\t\t\t\t\t<div class=\"slider-flex-wrapper\">\n\t\t\t\t\t<div class=\"sliderContainer\">\n\t\t\t\t\t\t<div class=\"content-slider single-item\">\t\t\t\t\t\t\t\t<div class=\"content-slider-box\">\n\t\t\t\t\t\t\t\t\t<div class=\"content-slider-data\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>&#8220;People are encountering friction &#038; barriers when trying to complete tasks online.&#8221;<\/h2>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a tabindex=\"0\" class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/work\/leading-health-benefits-company\/\" target=\"_self\" aria-label=\"Click this link for See the Leading Health Benefits Company case study landing page\">See the Leading Health Benefits Company case study<\/a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-img\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/expertise_problems-we-solve_1.png\" alt=\"Graphic consisting of an image of a person lying down using their mobile device overlaid on a blue square outline and a yellow circle\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-box\">\n\t\t\t\t\t\t\t\t\t<div class=\"content-slider-data\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>&#8220;Our technologies are outdated and underperforming.&#8221;<\/h2>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a tabindex=\"0\" class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/work\/mercury-marine\/\" target=\"_self\" aria-label=\"Click this link for See the Mercury Marine case study landing page\">See the Mercury Marine case study<\/a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-img\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/expertise_problems-we-solve_2.png\" alt=\"Overlapping shapes in yellow and blue create a backdrop for an image of a person holding a tablet while seated close to a body water\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-box\">\n\t\t\t\t\t\t\t\t\t<div class=\"content-slider-data\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>\u201cWe need a vision, a roadmap, and a partner to make our new digital product a reality.\u201d<\/h2>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a tabindex=\"0\" class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/work\/further\/\" target=\"_self\" aria-label=\"Click this link for See the Further case study landing page\">See the Further case study<\/a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-img\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/03\/expertise_problems_we_solve_3.webp\" alt=\"a red cirle and blue square are layered under an image of two masked people looking at a mobile phone.\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-box\">\n\t\t\t\t\t\t\t\t\t<div class=\"content-slider-data\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>\u201cOur internal teams lack the capacity or capability to meet the organization&#8217;s needs.\u201d<\/h2>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a tabindex=\"0\" class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/work\/multinational-food-company\/\" target=\"_self\" aria-label=\"Click this link for See the Multinational Food Company's case study landing page\">See the Multinational Food Company&#8217;s case study<\/a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-img\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/expertise_problems-we-solve_4.png\" alt=\"Image of a farmer tending to lush green crops in a field layered over yellow and blue shapes in the background\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-box\">\n\t\t\t\t\t\t\t\t\t<div class=\"content-slider-data\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>\u201cManaging our digital ecosystem is challenging and time-consuming for our team.\u201d<\/h2>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a tabindex=\"0\" class=\"fancy-link arrow-after\" href=\"https:\/\/clockwork.com\/work\/minnesota-lottery\/\" target=\"_self\" aria-label=\"Click this link for See the Minnesota Lottery case study landing page\">See the Minnesota Lottery case study<\/a>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-slider-img\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/expertise_problems-we-solve_5.png\" alt=\"Closeup image of numbered lottery balls on a teal background layered over red and blue graphic shapes\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"progressBarContainer\">\t\t\t\t\t\t\t\t<div class=\"slider-pagination\">\n\t\t\t\t\t\t\t\t\t<span data-slick-index=\"0\" class=\"progressBar\"><\/span>\n\t\t\t\t\t\t\t\t\t<h3>1<\/h3>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"slider-pagination\">\n\t\t\t\t\t\t\t\t\t<span data-slick-index=\"1\" class=\"progressBar\"><\/span>\n\t\t\t\t\t\t\t\t\t<h3>2<\/h3>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"slider-pagination\">\n\t\t\t\t\t\t\t\t\t<span data-slick-index=\"2\" class=\"progressBar\"><\/span>\n\t\t\t\t\t\t\t\t\t<h3>3<\/h3>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"slider-pagination\">\n\t\t\t\t\t\t\t\t\t<span data-slick-index=\"3\" class=\"progressBar\"><\/span>\n\t\t\t\t\t\t\t\t\t<h3>4<\/h3>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"slider-pagination\">\n\t\t\t\t\t\t\t\t\t<span data-slick-index=\"4\" class=\"progressBar\"><\/span>\n\t\t\t\t\t\t\t\t\t<h3>5<\/h3>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\n\t<\/div>\n<\/div><\/div>\n\n\n\n<section class=\"feature-tabs\" aria-label=\"featured tabs\">\n\t<div class=\"new-container\">\n\t\t<div class=\"flex-wrapper wrap \">\n\t\t\t<div class=\"flex-1\">\n\t\t\t\t<div class=\"section-heading clearfix\">\n\t\t\t\t\t\t\t\t\t\t\t<h2>How we work<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Clockwork puts people at the center of every solution. Not just on the client side but also right here, within our own culture. The teams we put together generally stick together over the years. Here\u2019s what to expect when you work with us.<\/span><\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t<div class=\"flex-1\">\n\t\t\t\t<div class=\"feature-tabs-boxes\">\n\t\t\t\t\t<div class=\"feature-tab\">\n\t\t\t\t\t\t<div class=\"mobile-hidden\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<button tabindex=\"0\" aria-label=\"Click here for People section\" class=\"featuretablinks active\" onclick=\"featuretabs(event, 'featuretab-1')\">People<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<button tabindex=\"0\" aria-label=\"Click here for Process section\" class=\"featuretablinks \" onclick=\"featuretabs(event, 'featuretab-2')\">Process<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<button tabindex=\"0\" aria-label=\"Click here for Technology section\" class=\"featuretablinks \" onclick=\"featuretabs(event, 'featuretab-3')\">Technology<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"mobile-show\">\n\t\t\t\t\t\t\t\t<div class=\"expertise-accordion\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<button tabindex=\"0\" aria-label=\"Click here for People section\" class=\"expertise-accordion-btn is-active\">People <svg width=\"20\" height=\"10\" viewBox=\"0 0 22 13\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path d=\"M1 12L11 2L21 12\" stroke=\"#161616\" stroke-width=\"2\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"expertise-accordion-content-1\" class=\"expertise-accordion-content is-active\">\n\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/expertise_how-we-work_people.png\" alt=\"how we work with people\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featuretabcontent-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h5>People<\/h5>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Many of our engagements start with talking to stakeholders closest to the project; our goal is to understand the audiences for the project, the outcomes they want, and what the business needs.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For example, putting people at the center of our work means we empathize with the client who wants to increase online sales as well as the customer who wants seamless and simple online buying. And we build from there. See how that works?\u00a0<\/span><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<button tabindex=\"0\" aria-label=\"Click here for Process section\" class=\"expertise-accordion-btn \">Process <svg width=\"20\" height=\"10\" viewBox=\"0 0 22 13\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path d=\"M1 12L11 2L21 12\" stroke=\"#161616\" stroke-width=\"2\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"expertise-accordion-content-2\" class=\"expertise-accordion-content \">\n\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/expertise_how-we-work_process.png\" alt=\"the process of how we work\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featuretabcontent-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h5>Process<\/h5>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Before we apply technology to a solution, we have to know if the process around it needs to change. We examine the processes clients have and ask questions about what they\u2019re using, what\u2019s working, and what could be better.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Along the way, we use self-organized, cross-functional teams that are empowered to determine the best approach or how to get the work done. The people we hire at Clockwork are smart, driven, and nice to work with. We like to let them show it.<\/span><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<button tabindex=\"0\" aria-label=\"Click here for Technology section\" class=\"expertise-accordion-btn \">Technology <svg width=\"20\" height=\"10\" viewBox=\"0 0 22 13\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path d=\"M1 12L11 2L21 12\" stroke=\"#161616\" stroke-width=\"2\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"expertise-accordion-content-3\" class=\"expertise-accordion-content \">\n\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/expertise_how-we-work_technology.png\" alt=\"how we work with technology\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featuretabcontent-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h5>Technology<\/h5>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Technology is key to helping us identify the best path\u2014or future state\u2014for the solutions and services we deliver to clients.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Our breadth and depth of experience across strategy, design, software engineering, and operations gives us the ability to meet clients where they are. It also helps us provide insights and recommendations in areas of their business where they may not have the capabilities. Talk about a win-win for you.\u00a0<\/span><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class='mobile-hidden'>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"featuretab-1\" class=\"featuretabcontent\"  style=\"display: block;\" >\n\t\t\t\t\t\t\t\t\t<div class=\"featuretab-inner-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/expertise_how-we-work_people.png\" alt=\"how we work with people\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featuretabcontent-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"h5\">People<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Many of our engagements start with talking to stakeholders closest to the project; our goal is to understand the audiences for the project, the outcomes they want, and what the business needs.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For example, putting people at the center of our work means we empathize with the client who wants to increase online sales as well as the customer who wants seamless and simple online buying. And we build from there. See how that works?\u00a0<\/span><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"featuretab-2\" class=\"featuretabcontent\" >\n\t\t\t\t\t\t\t\t\t<div class=\"featuretab-inner-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/expertise_how-we-work_process.png\" alt=\"the process of how we work\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featuretabcontent-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"h5\">Process<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Before we apply technology to a solution, we have to know if the process around it needs to change. We examine the processes clients have and ask questions about what they\u2019re using, what\u2019s working, and what could be better.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Along the way, we use self-organized, cross-functional teams that are empowered to determine the best approach or how to get the work done. The people we hire at Clockwork are smart, driven, and nice to work with. We like to let them show it.<\/span><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"featuretab-3\" class=\"featuretabcontent\" >\n\t\t\t\t\t\t\t\t\t<div class=\"featuretab-inner-box\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/expertise_how-we-work_technology.png\" alt=\"how we work with technology\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featuretabcontent-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"h5\">Technology<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Technology is key to helping us identify the best path\u2014or future state\u2014for the solutions and services we deliver to clients.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Our breadth and depth of experience across strategy, design, software engineering, and operations gives us the ability to meet clients where they are. It also helps us provide insights and recommendations in areas of their business where they may not have the capabilities. Talk about a win-win for you.\u00a0<\/span><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n<script>\n  \/* feature tabs desktop *\/\n  function featuretabs(evt, featuretabsName) {\n    var i, featuretabcontent, featuretablinks;\n    featuretabcontent = document.getElementsByClassName(\"featuretabcontent\");\n    for (i = 0; i < featuretabcontent.length; i++) {\n      featuretabcontent[i].style.display = \"none\";\n    }\n    featuretablinks = document.getElementsByClassName(\"featuretablinks\");\n    for (i = 0; i < featuretablinks.length; i++) {\n      featuretablinks[i].className = featuretablinks[i].className.replace(\" active\", \"\");\n    }\n    document.getElementById(featuretabsName).style.display = \"block\";\n    evt.currentTarget.className += \" active\";\n  }\n<\/script>\n\n\n<div style=\"height:20em\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":24,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"coauthors":[73],"class_list":["post-23","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.2 (Yoast SEO v25.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Our Services and Expertise \u2014 Clockwork<\/title>\n<meta name=\"description\" content=\"Our services include Experience Design, Strategy, Innovation &amp; Change, Technology &amp; Engineering, and Maintenance &amp; Support.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.clockwork.com\/services\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Services - Clockwork\" \/>\n<meta property=\"og:description\" content=\"Our services include Experience Design, Strategy, Innovation &amp; Change, Technology &amp; Engineering, and Maintenance &amp; Support.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.clockwork.com\/services\/\" \/>\n<meta property=\"og:site_name\" content=\"Clockwork\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/clockworkactivemedia\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-03T17:35:06+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@Clockwork_Tweet\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.clockwork.com\/services\/\",\"url\":\"https:\/\/www.clockwork.com\/services\/\",\"name\":\"Our Services and Expertise \u2014 Clockwork\",\"isPartOf\":{\"@id\":\"https:\/\/www.clockwork.com\/#website\"},\"datePublished\":\"2022-06-21T19:20:04+00:00\",\"dateModified\":\"2026-02-03T17:35:06+00:00\",\"description\":\"Our services include Experience Design, Strategy, Innovation & Change, Technology & Engineering, and Maintenance & Support.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.clockwork.com\/services\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.clockwork.com\/services\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.clockwork.com\/services\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.clockwork.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Services\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.clockwork.com\/#website\",\"url\":\"https:\/\/www.clockwork.com\/\",\"name\":\"Clockwork\",\"description\":\"We create human-centered digital experiences.\",\"publisher\":{\"@id\":\"https:\/\/www.clockwork.com\/#organization\"},\"alternateName\":\"Clockwork: Custom Software Solutions & Experience Design\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.clockwork.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.clockwork.com\/#organization\",\"name\":\"Clockwork\",\"url\":\"https:\/\/www.clockwork.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg\",\"contentUrl\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg\",\"width\":93,\"height\":48,\"caption\":\"Clockwork\"},\"image\":{\"@id\":\"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/clockworkactivemedia\",\"https:\/\/x.com\/Clockwork_Tweet\",\"https:\/\/www.linkedin.com\/company\/clockwork-active-media-systems\"],\"description\":\"Experience design & technology consultancy. We build enterprise websites, software platforms, and mobile apps with a human-centered approach.\",\"legalName\":\"Clockwork\",\"foundingDate\":\"2001-01-01\",\"naics\":\"541511\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"51\",\"maxValue\":\"200\"},\"actionableFeedbackPolicy\":\"https:\/\/www.clockwork.com\/accessibility-statement\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Our Services and Expertise \u2014 Clockwork","description":"Our services include Experience Design, Strategy, Innovation & Change, Technology & Engineering, and Maintenance & Support.","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:\/\/www.clockwork.com\/services\/","og_locale":"en_US","og_type":"article","og_title":"Services - Clockwork","og_description":"Our services include Experience Design, Strategy, Innovation & Change, Technology & Engineering, and Maintenance & Support.","og_url":"https:\/\/www.clockwork.com\/services\/","og_site_name":"Clockwork","article_publisher":"https:\/\/www.facebook.com\/clockworkactivemedia","article_modified_time":"2026-02-03T17:35:06+00:00","twitter_card":"summary_large_image","twitter_site":"@Clockwork_Tweet","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.clockwork.com\/services\/","url":"https:\/\/www.clockwork.com\/services\/","name":"Our Services and Expertise \u2014 Clockwork","isPartOf":{"@id":"https:\/\/www.clockwork.com\/#website"},"datePublished":"2022-06-21T19:20:04+00:00","dateModified":"2026-02-03T17:35:06+00:00","description":"Our services include Experience Design, Strategy, Innovation & Change, Technology & Engineering, and Maintenance & Support.","breadcrumb":{"@id":"https:\/\/www.clockwork.com\/services\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.clockwork.com\/services\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.clockwork.com\/services\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.clockwork.com\/"},{"@type":"ListItem","position":2,"name":"Services"}]},{"@type":"WebSite","@id":"https:\/\/www.clockwork.com\/#website","url":"https:\/\/www.clockwork.com\/","name":"Clockwork","description":"We create human-centered digital experiences.","publisher":{"@id":"https:\/\/www.clockwork.com\/#organization"},"alternateName":"Clockwork: Custom Software Solutions & Experience Design","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.clockwork.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.clockwork.com\/#organization","name":"Clockwork","url":"https:\/\/www.clockwork.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg","contentUrl":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg","width":93,"height":48,"caption":"Clockwork"},"image":{"@id":"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/clockworkactivemedia","https:\/\/x.com\/Clockwork_Tweet","https:\/\/www.linkedin.com\/company\/clockwork-active-media-systems"],"description":"Experience design & technology consultancy. We build enterprise websites, software platforms, and mobile apps with a human-centered approach.","legalName":"Clockwork","foundingDate":"2001-01-01","naics":"541511","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"51","maxValue":"200"},"actionableFeedbackPolicy":"https:\/\/www.clockwork.com\/accessibility-statement\/"}]}},"_links":{"self":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/23","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/comments?post=23"}],"version-history":[{"count":154,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/23\/revisions"}],"predecessor-version":[{"id":9525,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/23\/revisions\/9525"}],"wp:attachment":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/media?parent=23"}],"wp:term":[{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/coauthors?post=23"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}