{"id":6267,"date":"2024-11-13T20:13:33","date_gmt":"2024-11-13T20:13:33","guid":{"rendered":"https:\/\/www.clockwork.com\/?page_id=6267"},"modified":"2025-12-12T15:12:37","modified_gmt":"2025-12-12T15:12:37","slug":"industries","status":"publish","type":"page","link":"https:\/\/www.clockwork.com\/industries\/","title":{"rendered":"Industries"},"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>Delivering custom solutions backed by<\/span> multi-industry expertise<\/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\/2025\/03\/victor-UoIiVYka3VY-unsplash-1280x720.webp\" alt=\"Blue sky and an industrial building with four large yellow ducts running down the exterior. Industries we serve.\" \/>\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<section class=\"industry-cards-and-scroll\" aria-label=\"industry cards\">\n  <div class=\"new-container\">\n    <div class=\"flex-wrapper wrap\">\n      <div class=\"industry-heading\">\n                  <h2>Applying our expertise to industry-specific needs<\/h2>\n        \n        <div class=\"industry-heading-bottom mobile-hidden\">\n\n          \n                      <p>But wait, there&#8217;s more:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=energy-construction\">Energy &amp; Construction<\/a><\/li>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=government\">Government<\/a><\/li>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=nonprofit\">Non-profit<\/a><\/li>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=retail\">Retail<\/a><\/li>\n<\/ul>\n          \n        <\/div>\n\n\n      <\/div>\n      <div class=\"industry-boxes\">\n        <div class=\"flex-wrapper wrap\">\n\n                        <div class=\"flex-1 industry-card-outer\">\n                                <div class=\"industry-card\"  style=\"border-color: #ffcc00;\" >\n                                      <a tabindex=\"0\" href=\"https:\/\/www.clockwork.com\/work\/?_industries=manufacturing\" target=\"_self\" aria-label=\"Click this link for card detail page\">\n                                        <div class=\"industry-content\">\n                      <div class=\"industry-bottom\">\n                                                  <h3 class=\"h4 industry-title\">Manufacturing<\/h3>\n                                                                          <h4 class=\"h6 industry-title-text\">Boosting B2B sales and building customer relationships with the power of tech.<\/h4>\n                                              <\/div>\n                      <div class=\"industry-bottom\">\n                                                                          <span aria-label=\"See our work in Manufacturing\" role=\"comment\">See our work in Manufacturing<\/span>\n                                              <\/div>\n                    <\/div>\n                                          <div class=\"industry-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/Mask-group-3.png\" alt=\"A woman with long hair is working on a laptop in a high-tech lab, focused on creating an innovative digital solution. Surrounded by electronic equipment, wires, and metal structures, she embodies the cutting-edge world of programming and engineering.\" class=\"card-image\" role=\"img\"><\/div>\n                    \n                                        <\/a>\n                                  <\/div>\n              <\/div>\n\n\n\n                          <div class=\"flex-1 industry-card-outer\">\n                                <div class=\"industry-card\"  style=\"border-color: #1fb44a;\" >\n                                      <a tabindex=\"0\" href=\"https:\/\/www.clockwork.com\/work\/?_industries=finance\" target=\"_self\" aria-label=\"Click this link for card detail page\">\n                                        <div class=\"industry-content\">\n                      <div class=\"industry-bottom\">\n                                                  <h3 class=\"h4 industry-title\">Finance<\/h3>\n                                                                          <h4 class=\"h6 industry-title-text\">Making finance fun. Or at least, making it easier and intuitive for customers.<\/h4>\n                                              <\/div>\n                      <div class=\"industry-bottom\">\n                                                                          <span aria-label=\"See our work in finance\" role=\"comment\">See our work in finance<\/span>\n                                              <\/div>\n                    <\/div>\n                                          <div class=\"industry-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/surface-K754CADul_A-unsplash-1.png\" alt=\"A person holds a smartphone and credit card outdoors, focused on enhancing their user experience through an online transaction. A takeaway coffee cup rests on the table beside them, with a brick wall and blurred background adding context to this seamless customer experience.\" class=\"card-image\" role=\"img\"><\/div>\n                    \n                                        <\/a>\n                                  <\/div>\n              <\/div>\n\n\n\n                          <div class=\"flex-1 industry-card-outer\">\n                                <div class=\"industry-card\"  style=\"border-color: #ff2e2e;\" >\n                                      <a tabindex=\"0\" href=\"https:\/\/www.clockwork.com\/work\/?_industries=insurance\" target=\"_self\" aria-label=\"Click this link for card detail page\">\n                                        <div class=\"industry-content\">\n                      <div class=\"industry-bottom\">\n                                                  <h3 class=\"h4 industry-title\">Insurance<\/h3>\n                                                                          <h4 class=\"h6 industry-title-text\">Engaging customers with personalized experiences through digital tools.<\/h4>\n                                              <\/div>\n                      <div class=\"industry-bottom\">\n                                                                          <span aria-label=\"See our work in Insurance\" role=\"comment\">See our work in Insurance<\/span>\n                                              <\/div>\n                    <\/div>\n                                          <div class=\"industry-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/Clock-work-img2.jpg\" alt=\"A person in a green sweater sits in a car, using a tablet displaying a grid of colorful app icons. The user experience is enhanced by the dark-themed menu as they touch the screen with their right hand, seamlessly navigating through options.\" class=\"card-image\" role=\"img\"><\/div>\n                    \n                                        <\/a>\n                                  <\/div>\n              <\/div>\n\n\n\n                          <div class=\"flex-1 industry-card-outer\">\n                                <div class=\"industry-card\"  style=\"border-color: #0f62fe;\" >\n                                      <a tabindex=\"0\" href=\"https:\/\/www.clockwork.com\/work\/?_industries=healthcare\" target=\"_self\" aria-label=\"Click this link for card detail page\">\n                                        <div class=\"industry-content\">\n                      <div class=\"industry-bottom\">\n                                                  <h3 class=\"h4 industry-title\">Healthcare<\/h3>\n                                                                          <h4 class=\"h6 industry-title-text\">Delivering individualized care without risking compliance.<\/h4>\n                                              <\/div>\n                      <div class=\"industry-bottom\">\n                                                                          <span aria-label=\"See our work in Healthcare\" role=\"comment\">See our work in Healthcare<\/span>\n                                              <\/div>\n                    <\/div>\n                                          <div class=\"industry-img\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/Clock-work-img1.jpg\" alt=\"A father with glasses sits in a kitchen holding two young children on his lap. The older child looks surprised while looking at a laptop screen, intrigued by the delightful user experience, while the younger child, with a bow in their hair, gazes down at the device.\" class=\"card-image\" role=\"img\"><\/div>\n                    \n                                        <\/a>\n                                  <\/div>\n              <\/div>\n\n\n\n                      \n        <\/div>\n      <\/div>\n\n      <div class=\"mobile-show flex-1\">\n        <div class=\"industry-heading\">\n          <div class=\"industry-heading-bottom\">\n                                      <p>But wait, there&#8217;s more:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=energy-construction\">Energy &amp; Construction<\/a><\/li>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=government\">Government<\/a><\/li>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=nonprofit\">Non-profit<\/a><\/li>\n<li><a href=\"https:\/\/www.clockwork.com\/work\/?_industries=retail\">Retail<\/a><\/li>\n<\/ul>\n                      <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n\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:250px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":37,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"coauthors":[176],"class_list":["post-6267","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>Solutions for Manufacturing, Finance, Insurance, and more<\/title>\n<meta name=\"description\" content=\"Delivering custom solutions for manufacturing, finance, healthcare, insurance, and more. Innovate with tailored technology and design.\" \/>\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\/industries\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Industries we serve\" \/>\n<meta property=\"og:description\" content=\"Delivering custom solutions for manufacturing, finance, healthcare, insurance, and more. Innovate with tailored technology and design.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.clockwork.com\/industries\/\" \/>\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=\"2025-12-12T15:12:37+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Industries - Clockwork\" \/>\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\/industries\/\",\"url\":\"https:\/\/www.clockwork.com\/industries\/\",\"name\":\"Solutions for Manufacturing, Finance, Insurance, and more\",\"isPartOf\":{\"@id\":\"https:\/\/www.clockwork.com\/#website\"},\"datePublished\":\"2024-11-13T20:13:33+00:00\",\"dateModified\":\"2025-12-12T15:12:37+00:00\",\"description\":\"Delivering custom solutions for manufacturing, finance, healthcare, insurance, and more. Innovate with tailored technology and design.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.clockwork.com\/industries\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.clockwork.com\/industries\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.clockwork.com\/industries\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.clockwork.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Industries\"}]},{\"@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":"Solutions for Manufacturing, Finance, Insurance, and more","description":"Delivering custom solutions for manufacturing, finance, healthcare, insurance, and more. Innovate with tailored technology and design.","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\/industries\/","og_locale":"en_US","og_type":"article","og_title":"Industries we serve","og_description":"Delivering custom solutions for manufacturing, finance, healthcare, insurance, and more. Innovate with tailored technology and design.","og_url":"https:\/\/www.clockwork.com\/industries\/","og_site_name":"Clockwork","article_publisher":"https:\/\/www.facebook.com\/clockworkactivemedia","article_modified_time":"2025-12-12T15:12:37+00:00","twitter_card":"summary_large_image","twitter_title":"Industries - Clockwork","twitter_site":"@Clockwork_Tweet","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.clockwork.com\/industries\/","url":"https:\/\/www.clockwork.com\/industries\/","name":"Solutions for Manufacturing, Finance, Insurance, and more","isPartOf":{"@id":"https:\/\/www.clockwork.com\/#website"},"datePublished":"2024-11-13T20:13:33+00:00","dateModified":"2025-12-12T15:12:37+00:00","description":"Delivering custom solutions for manufacturing, finance, healthcare, insurance, and more. Innovate with tailored technology and design.","breadcrumb":{"@id":"https:\/\/www.clockwork.com\/industries\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.clockwork.com\/industries\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.clockwork.com\/industries\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.clockwork.com\/"},{"@type":"ListItem","position":2,"name":"Industries"}]},{"@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\/6267","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\/37"}],"replies":[{"embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/comments?post=6267"}],"version-history":[{"count":23,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/6267\/revisions"}],"predecessor-version":[{"id":9135,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/6267\/revisions\/9135"}],"wp:attachment":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/media?parent=6267"}],"wp:term":[{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/coauthors?post=6267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}