

<!DOCTYPE html>
<html lang="en">

<head>
       <!-- Metadata -->
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title></title>
   <meta name="description" content="">
   <meta name="keywords" content="">
   <link rel="canonical" href="https://www.oshyn.com/404-Not-Found" />
      <meta name="robots" content="noindex">

    



    <link rel="preconnect" href="https://media2.oshyn.com" />

    <link rel="dns-prefetch" href="//www.googletagmanager.com/">
    <link rel="dns-prefetch" href="//connect.facebook.net">
    <link rel="dns-prefetch" href="//js.hscollectedforms.net">



    <link rel="preload" href="https://media2.oshyn.com/assets/fonts/sora-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous">

    <link rel="preload" href="https://media2.oshyn.com/assets/fonts/hind-regular-webfont.woff2" as="font" type="font/woff2" crossorigin="anonymous">

    <link rel="preload" as="style" href="https://media2.oshyn.com/assets/css/style.min.css?v=5.0.0.7250">


    <!-- icons -->
    <link rel="icon" href="https://media2.oshyn.com/favicon.ico" sizes="any"><!-- 32ï¿½32 -->
    <link rel="icon" href="https://media2.oshyn.com/icon.svg" type="image/svg+xml">
    <link rel="apple-touch-icon" href="https://media2.oshyn.com/apple-touch-icon.png"><!-- 180ï¿½180 -->
    <link rel="manifest" href="https://media2.oshyn.com/manifest.json">

        <link rel="alternate" type="text/markdown" href="https://www.oshyn.com/404-Not-Found.md" />

    <style>
    body{
        font-family: Hind, sans-serif;
        font-size: 16px;
        background-color: #0e1633;
        color: #fff;
    }
    h1,h2,h3,h4,h5,h6{
        font-family: Sora, sans-serif;
        font-weight: 700;
    }


    @font-face {
	    font-family: 'Hind';
	    font-weight: 400;
	    src: url('https://media2.oshyn.com/assets/fonts/hind-regular-webfont.woff2') format('woff2'),
		    url('https://media2.oshyn.com/assets/fonts/hind-regular-webfont.woff') format('woff');
	    font-display: optional;
    }
    @font-face {
	    font-family: 'Hind';
	    font-weight: 700;
	    src: url('https://media2.oshyn.com/assets/fonts/hind-bold-webfont.woff2') format('woff2'),
		    url('https://media2.oshyn.com/assets/fonts/hind-bold-webfont.woff') format('woff');
	    font-display: optional;
    }
    @font-face {
	    font-family: 'Sora';
	    font-weight: 400;
	    src: url('https://media2.oshyn.com/assets/fonts/sora-regular.woff2') format('woff2'),
		    url('https://media2.oshyn.com/assets/fonts/sora-regular.woff') format('woff');
	    font-display: optional;
    }
    @font-face {
	    font-family: 'Sora';
	    font-weight: 700;
	    src: url('https://media2.oshyn.com/assets/fonts/sora-bold.woff2') format('woff2'),
		    url('https://media2.oshyn.com/assets/fonts/sora-bold.woff') format('woff');
	    font-display: optional;
    }
    </style>
    <link href="https://media2.oshyn.com/assets/css/style.min.css?v=5.0.0.7250" rel="stylesheet">
    <!-- Local Javascript -->
    <script defer src="https://media2.oshyn.com/assets/js/index.js?v=5.0.0.7250"></script>

    <!-- Global Head Scripts 	-->
    <script>
		(function () {
			var scripts = [
				'https://media2.oshyn.com/assets/js/jquery.min.js',
				'https://media2.oshyn.com/assets/js/jquery.validate.min.js',
				'https://media2.oshyn.com/assets/js/jquery.validate.unobtrusive.min.js',
				'https://media2.oshyn.com/assets/js/jquery.unobtrusive-ajax.min.js',
				'https://media2.oshyn.com/assets/js/form.validate.min.js',
				'https://media2.oshyn.com/assets/js/form.tracking.min.js',
				'https://media2.oshyn.com/assets/js/form.conditions.min.js',
				'https://media2.oshyn.com/assets/js/searchBlogEbookAuthor.js',
				'https://media2.oshyn.com/assets/js/search.js'
			];

			var started = false;

			function initializeGTM() {
				var gtmModelData = "GTM-K3LDM79";

				// Evita insertar GTM mÃ¡s de una vez
				if (window.dataLayer && window.dataLayer.__gtmInitialized) {
					return;
				}

				(function (w, d, s, l, i) {
					w[l] = w[l] || [];

					// Marca interna para evitar reinyecciÃ³n
					w[l].__gtmInitialized = true;

					w[l].push({
						'gtm.start': new Date().getTime(),
						event: 'gtm.js'
					});

					var f = d.getElementsByTagName(s)[0];
					var j = d.createElement(s);
					var dl = l !== 'dataLayer' ? '&l=' + l : '';

					j.async = true;
					j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;

					if (f && f.parentNode) {
						f.parentNode.insertBefore(j, f);
					} else {
						(d.head || d.body || d.documentElement).appendChild(j);
					}
				})(window, document, 'script', 'dataLayer', gtmModelData);
			}

			function loadScriptSequentially(index) {
				if (index >= scripts.length) return;

				var src = scripts[index];
				var existing = document.querySelector('script[src="' + src + '"]');

				if (existing) {
					loadScriptSequentially(index + 1);
					return;
				}

				var script = document.createElement('script');
				script.src = src;
				script.async = false;

				script.onload = function () {
					loadScriptSequentially(index + 1);
				};

				script.onerror = function () {
					console.error('No se pudo cargar el script:', src);
					loadScriptSequentially(index + 1);
				};

				(document.head || document.body || document.documentElement).appendChild(script);
			}

			function start() {
				if (started) return;
				started = true;

				// Inicializa GTM primero
				initializeGTM();

				// Luego carga el resto de scripts
                loadScriptSequentially(0);
			}

			if (document.readyState === 'loading') {
				document.addEventListener('DOMContentLoaded', start, { once: true });
			} else {
				start();
			}

			// Importante para iOS Safari / back-forward cache
			window.addEventListener('pageshow', start, { once: true });
		})();


    </script>
    <!-- Top Local JS -->
    
    
</head>
<body data-cdn="https://media2.oshyn.com">

    <a href="#main-content" class="skip-link">Skip to main content</a>
    
    <header class="home">
        


<nav class="navigation-menu tw-z-10 ">
    <div class="background-gradients"></div>
    <div class="tw-w-full tw-flex tw-items-center tw-mx-auto tw-max-w-[1344px]">
        <a class="nav-logo" href="/">
            <img src="https://media2.oshyn.com/-/media/Oshyn/Navigation/oshyn-logo-svg.svg?rev=1401ddc59bfa4d97a273a68fec661561&amp;hash=4FAE094094003046B9113FFEDE438BD0" alt="Oshyn logo">
        </a>

        <input type="checkbox" id="toggle-menu">

        <!-- Mobile: Search + Hamburger/Close group -->
        <div class="nav-mobile-controls tw-ml-auto tw-flex tw-items-center tw-gap-5 lg:tw-hidden">
            <button class="nav-mobile-search" id="toggle-mobile-search-header" type="button" aria-label="Search" style="">
                <svg class="search-mobile-closed" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="https://www.w3.org/2000/svg">
                    <rect x="1" y="1" width="46" height="46" rx="23" stroke="white" stroke-width="2"></rect>
                    <path d="M31.5423 32.5961L25.2616 26.3151C24.7616 26.7279 24.1866 27.051 23.5366 27.2843C22.8866 27.5176 22.2141 27.6343 21.5193 27.6343C19.8101 27.6343 18.3636 27.0426 17.1798 25.8591C15.996 24.6756 15.4041 23.2294 15.4041 21.5206C15.4041 19.8119 15.9958 18.3652 17.1793 17.1806C18.3628 15.9961 19.809 15.4038 21.5178 15.4038C23.2265 15.4038 24.6731 15.9957 25.8578 17.1796C27.0423 18.3634 27.6346 19.8099 27.6346 21.5191C27.6346 22.2332 27.5147 22.9153 27.2751 23.5653C27.0352 24.2153 26.7153 24.7806 26.3153 25.2613L32.5961 31.5421L31.5423 32.5961ZM21.5193 26.1346C22.8078 26.1346 23.8991 25.6874 24.7933 24.7931C25.6876 23.8989 26.1348 22.8076 26.1348 21.5191C26.1348 20.2306 25.6876 19.1392 24.7933 18.2451C23.8991 17.3507 22.8078 16.9036 21.5193 16.9036C20.2308 16.9036 19.1395 17.3507 18.2453 18.2451C17.351 19.1392 16.9038 20.2306 16.9038 21.5191C16.9038 22.8076 17.351 23.8989 18.2453 24.7931C19.1395 25.6874 20.2308 26.1346 21.5193 26.1346Z" fill="white"></path>
                </svg>

                <svg class="search-mobile-open" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="https://www.w3.org/2000/svg">
                    <rect width="48" height="48" rx="24" fill="#7041C3"></rect>
                    <path d="M31.5423 32.5961L25.2616 26.3151C24.7616 26.7279 24.1866 27.051 23.5366 27.2843C22.8866 27.5176 22.2141 27.6343 21.5193 27.6343C19.8101 27.6343 18.3636 27.0426 17.1798 25.8591C15.996 24.6756 15.4041 23.2294 15.4041 21.5206C15.4041 19.8119 15.9958 18.3652 17.1793 17.1806C18.3628 15.9961 19.809 15.4038 21.5178 15.4038C23.2265 15.4038 24.6731 15.9957 25.8578 17.1796C27.0423 18.3634 27.6346 19.8099 27.6346 21.5191C27.6346 22.2332 27.5147 22.9153 27.2751 23.5653C27.0352 24.2153 26.7153 24.7806 26.3153 25.2613L32.5961 31.5421L31.5423 32.5961ZM21.5193 26.1346C22.8078 26.1346 23.8991 25.6874 24.7933 24.7931C25.6876 23.8989 26.1348 22.8076 26.1348 21.5191C26.1348 20.2306 25.6876 19.1392 24.7933 18.2451C23.8991 17.3507 22.8078 16.9036 21.5193 16.9036C20.2308 16.9036 19.1395 17.3507 18.2453 18.2451C17.351 19.1392 16.9038 20.2306 16.9038 21.5191C16.9038 22.8076 17.351 23.8989 18.2453 24.7931C19.1395 25.6874 20.2308 26.1346 21.5193 26.1346Z" fill="white"></path>
                </svg>

            </button>
            <label for="toggle-menu" class="nav-hamburger">
                <!-- Hamburger icon (shown when closed) -->
                <svg class="hamburger-icon" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="https://www.w3.org/2000/svg">
                    <rect width="48" height="48" rx="24" fill="white"></rect>
                    <path d="M15.5 29.6347V28.135H32.5V29.6347H15.5ZM15.5 24.7502V23.2502H32.5V24.7502H15.5ZM15.5 19.8655V18.3657H32.5V19.8655H15.5Z" fill="#7041C3"></path>
                </svg>

                <!-- Close icon (shown when open) - purple circle with white X -->
                <svg class="close-icon" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="https://www.w3.org/2000/svg">
                    <circle cx="24" cy="24" r="24" fill="#7041C3"></circle>
                    <path d="M17 31L31 17" stroke="white" stroke-width="2" stroke-linecap="round"></path>
                    <path d="M31 31L17 17" stroke="white" stroke-width="2" stroke-linecap="round"></path>
                </svg>
            </label>
        </div>

        <div class="nav-container ">
            <div class="nav-toggles show" id="nav-toggles">
                <button class="back-button" value="back" type="button">Back</button>
            </div>

            <!-- Desktop forced hamburger -->
            <div class="container-forced-hamburger-menu">

                <!-- close forced hamburger-->
                <label for="toggle-menu" class="nav-hamburger-forced tw-hidden lg:tw-block ">
                    <!-- Close icon (shown when open) - purple circle with white X -->
                    <svg class="close-icon" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="https://www.w3.org/2000/svg">
                        <circle cx="24" cy="24" r="24" fill="#7041C3"></circle>
                        <path d="M17 31L31 17" stroke="white" stroke-width="2" stroke-linecap="round"></path>
                        <path d="M31 31L17 17" stroke="white" stroke-width="2" stroke-linecap="round"></path>
                    </svg>
                </label>

            </div>


            <!-- Mobile menu overlay content -->
            <div class="nav-items-wrapper lg:tw-contents">
                <div class="nav-divider lg:tw-hidden"></div>
                <ul class="nav-items" style="position: initial;">
                    <li class="search-item" style="visibility: visible;">
                        <form id="searchForm" action="https://www.oshyn.com/Search">
                            <input id="keyword" type="search" name="keyword" class="form-control collapse" aria-label="Search" placeholder="Search...">
                            <button class="btn-close-search" data-bs-dismiss="collapse" type="button" id="close-search">
                                <svg width="27" height="27" fill="none" alt="close" xmlns="https://www.w3.org/2000/svg">
                                    <path fill-rule="evenodd" clip-rule="evenodd" d="m7 8.414 5.293 5.293 1.414-1.414L8.414 7l5.293-5.293L12.293.293 7 5.586 1.707.293.293 1.707 5.586 7 .293 12.293l1.414 1.414L7 8.414Z" fill="#fff"></path>
                                </svg>
                            </button>
                            <button id="search-btn" class="search-btn submit" type="submit" data-bs-toggle="collapse" aria-expanded="false" aria-controls="searchForm">
                                <svg width="30" height="26" viewBox="0 0 30 26" fill="none" xmlns="https://www.w3.org/2000/svg">
                                    <path fill-rule="evenodd" clip-rule="evenodd" d="M18.6613 10.172C18.6613 14.3953 15.2376 17.819 11.0142 17.819C6.79089 17.819 3.36719 14.3953 3.36719 10.172C3.36719 5.9486 6.79089 2.5249 11.0142 2.5249C15.2376 2.5249 18.6613 5.9486 18.6613 10.172ZM17.2511 18.1766C15.5305 19.5191 13.3658 20.319 11.0142 20.319C5.41018 20.319 0.867188 15.776 0.867188 10.172C0.867188 4.56789 5.41018 0.0249023 11.0142 0.0249023C16.6183 0.0249023 21.1613 4.56789 21.1613 10.172C21.1613 12.5235 20.3614 14.6882 19.0188 16.4088L26.7511 24.141L24.9833 25.9088L17.2511 18.1766Z" fill="white"></path>
                                </svg>
                            </button>
                        </form>
                    </li>


                            <li class="nav-item dropdown">
                                <a href="" class="nav-link-megamenu megalink" role="button" aria-expanded="false" id="megamenu-toggle">
                                    What We Do

                                    <svg class="angle-right lg:tw-hidden" width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="https://www.w3.org/2000/svg">
                                        <path d="M0.707031 10.707L5.70703 5.70703L0.707031 0.707031" stroke="url(#paint0_linear_30078_53442)" stroke-width="2"></path>
                                        <path d="M0.707031 10.707L5.70703 5.70703L0.707031 0.707031" stroke="black" stroke-width="2"></path>
                                        <defs>
                                            <linearGradient id="paint0_linear_30078_53442" x1="3.04931" y1="8.04931" x2="-1.63955" y2="3.36045" gradientUnits="userSpaceOnUse">
                                                <stop stop-color="#3364DD"></stop>
                                                <stop offset="0.197917" stop-color="#4459D5"></stop>
                                                <stop offset="0.45" stop-color="#6447C8"></stop>
                                                <stop offset="0.55" stop-color="#7041C3"></stop>
                                                <stop offset="0.79" stop-color="#A94DEB"></stop>
                                                <stop offset="1" stop-color="#FE80FE"></stop>
                                            </linearGradient>
                                        </defs>
                                    </svg>


                                    <svg class="angle-down tw-hidden lg:tw-inline-block" width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="https://www.w3.org/2000/svg">
                                        <path d="M0.886719 1L5.88672 6L10.8867 1" stroke="white" stroke-width="2"></path>
                                    </svg>
                                    <svg class="angle-up tw-hidden" width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="https://www.w3.org/2000/svg">
                                        <path d="M10.7072 6.41406L5.70715 1.41406L0.707153 6.41406" stroke="white" stroke-width="2"/>
                                    </svg>                                    
                                </a>
                                <ul class="dropdown-megamenu" aria-labelledby="megamenu-toggle">
                                    <li class="megamenu-v3" role="menu">
                                        <!-- Mobile: Back button -->
                                        <button type="button" class="megamenu-v3__back" id="megamenu-v3-back">
                                            <svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="https://www.w3.org/2000/svg">
                                                <path d="M7 1L2 6L7 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
                                            </svg>
                                            <span>Back</span>
                                        </button>

                                        <!-- Mobile scroll container -->
                                        <div class="megamenu-v3__scroll-container">
                                            <!-- EXPERTISE section -->
                                            <section class="megamenu-v3__section">
                                                <h4 class="megamenu-v3__heading">EXPERTISE</h4>
                                                <ul class="megamenu-v3__list">
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/services/ai-first-ux-design" class="megalink">AI-First UX Design</a>
                                                            <p class="megamenu-v3__description">Optimal experience for humans &amp; machines.</p>
                                                        </li>
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/services/agentic-dxp-development" class="megalink">Agentic CMS/DXP Implementation</a>
                                                            <p class="megamenu-v3__description">25 years experience in enterprise CMS.</p>
                                                        </li>
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/services/cms-dxp-migration" class="megalink">CMS &amp; DXP Migration</a>
                                                            <p class="megamenu-v3__description">Move to a modern DXP. Fast.</p>
                                                        </li>
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/solutions/design-support" class="megalink">Design Support</a>
                                                            <p class="megamenu-v3__description">Ensure technical feasibility from the start.</p>
                                                        </li>
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/solutions/aeo-geo-optimization" class="megalink">AEO &amp; GEO</a>
                                                            <p class="megamenu-v3__description">Ensure your DXP is optimized for AI discovery.</p>
                                                        </li>
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/solutions/move-to-composable-dxp" class="megalink">Composable DXPs</a>
                                                            <p class="megamenu-v3__description">Keep your martech agile and your CX fast.</p>
                                                        </li>
                                                        <li class="megamenu-v3__item">
                                                            <a href="https://www.oshyn.com/solutions/website-accessibility" class="megalink">Website Accessibility</a>
                                                            <p class="megamenu-v3__description">Maximize your reach with a good UX for all.</p>
                                                        </li>

                                                </ul>
                                            </section>

                                            <!-- PLATFORMS section -->
                                            <section class="megamenu-v3__section megamenu-v3__section--platforms">
                                                <h4 class="megamenu-v3__heading">PLATFORMS</h4>
                                                <ul class="megamenu-v3__list megamenu-v3__list--compact">
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/adobe-experience-cloud" target="" class="megamenu-v3__link megalink">Adobe CX Enterprise</a>
                                                                <span class="megamenu-v3__separator">|</span>
                                                                <a href="https://www.oshyn.com/adobe-experience-cloud-services" target="" class="megamenu-v3__services-link megalink">Services</a>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/contentstack" target="" class="megamenu-v3__link megalink">Contentstack</a>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/optimizely" target="" class="megamenu-v3__link megalink">Optimizely</a>
                                                                <span class="megamenu-v3__separator">|</span>
                                                                <a href="https://www.oshyn.com/optimizely-services" target="" class="megamenu-v3__services-link megalink">Services</a>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/sitecore" target="" class="megamenu-v3__link megalink">Sitecore</a>
                                                                <span class="megamenu-v3__separator">|</span>
                                                                <a href="https://www.oshyn.com/sitecore-services" target="" class="megamenu-v3__services-link megalink">Services</a>
                                                            </li>



                                                </ul>
                                            </section>
                                        </div>





                                        <!-- Desktop: 3-column layout -->
                                        <div class="megamenu-v3__desktop">
                                            <div class="megamenu-v3__container">
                                                <!-- EXPERTISE column -->
                                                <div class="megamenu-v3__column megamenu-v3__column--expertise">
                                                    <h4 class="megamenu-v3__heading">EXPERTISE</h4>
                                                    
                                                    <ul class="megamenu-v3__list">
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/services/ai-first-ux-design" class="megamenu-v3__link megalink megamenu-v3__link--primary">AI-First UX Design</a>
                                                                <p class="megamenu-v3__description">Optimal experience for humans &amp; machines.</p>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/services/agentic-dxp-development" class="megamenu-v3__link megalink ">Agentic CMS/DXP Implementation</a>
                                                                <p class="megamenu-v3__description">25 years experience in enterprise CMS.</p>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/services/cms-dxp-migration" class="megamenu-v3__link megalink ">CMS &amp; DXP Migration</a>
                                                                <p class="megamenu-v3__description">Move to a modern DXP. Fast.</p>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/design-support" class="megamenu-v3__link megalink ">Design Support</a>
                                                                <p class="megamenu-v3__description">Ensure technical feasibility from the start.</p>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/aeo-geo-optimization" class="megamenu-v3__link megalink ">AEO &amp; GEO</a>
                                                                <p class="megamenu-v3__description">Ensure your DXP is optimized for AI discovery.</p>
                                                            </li>
                                                            <li class="megamenu-v3__item">
                                                                <a href="https://www.oshyn.com/solutions/move-to-composable-dxp" class="megamenu-v3__link megalink ">Composable DXPs</a>
                                                                <p class="megamenu-v3__description">Keep your martech agile and your CX fast.</p>
                                                            </li>


                                                    </ul>
                                                </div>

                                                <!-- SOLUTIONS column -->
                                                <div class="megamenu-v3__column megamenu-v3__column--solutions">
                                                    <h4 class="megamenu-v3__heading">&nbsp;</h4> <!-- empty heading for alignment -->
                                                        <ul class="megamenu-v3__list">
                                                                <li class="megamenu-v3__item">
                                                                    <a href="https://www.oshyn.com/solutions/website-accessibility" class="megamenu-v3__link megalink">Website Accessibility</a>
                                                                    <p class="megamenu-v3__description">Maximize your reach with a good UX for all.</p>
                                                                </li>
                                                        </ul>



                                                </div>

                                                <!-- Divider -->
                                                <div class="megamenu-v3__divider"></div>

                                                <!-- PLATFORMS column -->
                                                <div class="megamenu-v3__column megamenu-v3__column--platforms">
                                                    <h4 class="megamenu-v3__heading">PLATFORMS</h4>
                                                    <ul class="megamenu-v3__list megamenu-v3__list--compact">
                                                                <li class="megamenu-v3__item">
                                                                    <a href="https://www.oshyn.com/solutions/adobe-experience-cloud" target="" class="megamenu-v3__link megalink">Adobe CX Enterprise</a>
                                                                    <span class="megamenu-v3__separator">|</span>
                                                                    <a href="https://www.oshyn.com/adobe-experience-cloud-services" target="" class="megamenu-v3__services-link megalink">Services</a>
                                                                </li>
                                                                <li class="megamenu-v3__item">
                                                                    <a href="https://www.oshyn.com/solutions/contentstack" target="" class="megamenu-v3__link megalink">Contentstack</a>
                                                                </li>
                                                                <li class="megamenu-v3__item">
                                                                    <a href="https://www.oshyn.com/solutions/optimizely" target="" class="megamenu-v3__link megalink">Optimizely</a>
                                                                    <span class="megamenu-v3__separator">|</span>
                                                                    <a href="https://www.oshyn.com/optimizely-services" target="" class="megamenu-v3__services-link megalink">Services</a>
                                                                </li>
                                                                <li class="megamenu-v3__item">
                                                                    <a href="https://www.oshyn.com/solutions/sitecore" target="" class="megamenu-v3__link megalink">Sitecore</a>
                                                                    <span class="megamenu-v3__separator">|</span>
                                                                    <a href="https://www.oshyn.com/sitecore-services" target="" class="megamenu-v3__services-link megalink">Services</a>
                                                                </li>
                                                    </ul>



                                                </div>
                                            </div>

                                            <!-- Bottom accent bar -->
                                            <div class="megamenu-v3__accent-bar">
                                                <div class="tw-grow">
                                                        <a href="https://digitaltrust.oshyn.com/" target="_blank" class="megalink">Explore the 2026 Digital Trust Index</a><span class="tw-leading-[47px]" > | </span>
                                                                                                            <a href="https://www.oshyn.com/tools" target="" class="megalink">More Tools</a>

                                                </div>
                                                <div>
                                                        <a href="https://www.oshyn.com/contact" target="" class="tw-underline megalink">Contact Us</a>
                                                </div>
                                            </div>
                                        </div>
                                    </li>
                                </ul>
                            </li>
                            <li class="nav-item" style="">
                                <a href="https://www.oshyn.com/work" class="nav-link megalink">Work</a>
                            </li>
                            <li class="nav-item" style="">
                                <a href="https://www.oshyn.com/blog" class="nav-link megalink">Insights</a>
                            </li>
                            <li class="nav-item" style="">
                                <a href="https://www.oshyn.com/tools" class="nav-link megalink">Tools</a>
                            </li>
                            <li class="nav-item" style="">
                                <a href="https://www.oshyn.com/about" class="nav-link megalink">About</a>
                            </li>
                </ul>
                <div class="nav-divider lg:tw-hidden"></div>
                <ul class="nav-buttons" style="">
                    <li class="tw-hidden lg:tw-block">
                        <button id="toggle-search" class="search-btn toggle show" type="button" data-bs-toggle="collapse" aria-expanded="false" aria-controls="searchForm">
                            <svg width="30" height="26" viewBox="0 0 30 26" fill="none" xmlns="https://www.w3.org/2000/svg">
                                <path fill-rule="evenodd" clip-rule="evenodd" d="M18.6613 10.172C18.6613 14.3953 15.2376 17.819 11.0142 17.819C6.79089 17.819 3.36719 14.3953 3.36719 10.172C3.36719 5.9486 6.79089 2.5249 11.0142 2.5249C15.2376 2.5249 18.6613 5.9486 18.6613 10.172ZM17.2511 18.1766C15.5305 19.5191 13.3658 20.319 11.0142 20.319C5.41018 20.319 0.867188 15.776 0.867188 10.172C0.867188 4.56789 5.41018 0.0249023 11.0142 0.0249023C16.6183 0.0249023 21.1613 4.56789 21.1613 10.172C21.1613 12.5235 20.3614 14.6882 19.0188 16.4088L26.7511 24.141L24.9833 25.9088L17.2511 18.1766Z" fill="white"></path>
                            </svg>
                        </button>
                    </li>
                    <li class="nav-button">
                        <a href="https://www.oshyn.com/contact" class="nav-link contact-link megalink" id="contact-button">Contact Us</a>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</nav>
    </header>
    <main id="main-content">
        



<section class="os-hero tw-block tw-relative tw-text-white">

    <div class="tw-grid tw-mx-auto tw-px-6 tw-relative lg:tw-min-h-[604px] lg:tw-h-auto xl:tw-px-0 tw-max-w-[1116px] lg:tw-grid-cols-2 tw-gap-12 lg:tw-gap-2">
        <div class="tw-w-full lg:tw-max-w-[505px] lg:tw-mb-[56px]">
                <h1 class="tw-mb-8 tw-text-[42px] lg:tw-text-[52px] tw-font-secondary tw-font-bold tw-leading-[46.2px] lg:tw-leading-[65px]">
                    <br />
<span class="error-title" style="margin-top: 64px">
404
</span>
                </h1>

            <div class="tw-font-primary tw-text-lg tw-font-normal tw-leading-7">
                <br />
<br />
<p>Uh oh. The page you requested doesn&rsquo;t seem to exist.</p>
<p>Check the URL you entered and try again. If still no luck, visit our<br />
<a href="/" style="color: #fff;">homepage</a>&nbsp;or read a few articles on <a href="/blog" style="color: #fff;">our blog</a>.</p>
            </div>
        </div>

            <picture class="tw-w-full tw-h-full tw-order-last lg:tw-order-none tw-flex tw-justify-end">
               <img src="https://media2.oshyn.com/-/media/Oshyn/Response-Status/404-missing-page.png?h=604&amp;iar=0&amp;w=720&amp;rev=9dec8c51e6324aeaaf60ec5d22fce3bf&amp;hash=8693C7F45268BC838AA6B265A199A22B" class="tw-w-full tw-h-full tw-object-cover tw-block tw--mr-8 lg:tw--mr-32 xl:tw--mr-20 tw-overflow-visible" alt="Missing Page" width="720" height="604" fetchPriority="high" loading="eager" />
            </picture>
    </div>
</section>

    </main>
    <footer>
        

    <div class="footer-bg tw-relative tw-z-10">
        <div class="container">
            <div class="footer-row tw-grid tw-grid-cols-1 tw-justify-items-center lg:tw-grid-cols-footer lg:tw-justify-items-start lg:tw-pb-9">
                <div class="footer-logo lg:tw-col-start-1 lg:tw-row-start-1">
                    <a aria-current="page" aria-label="Homepage" href="/">
                        <img src="https://media2.oshyn.com/-/media/Oshyn/Navigation/oshyn-logo-svg.svg?h=65&amp;iar=0&amp;w=155&amp;rev=1401ddc59bfa4d97a273a68fec661561&amp;hash=A1E7F1BE522271F8971F6F2D08CA1AAA" class="oshyn-footer tw-relative tw-max-w-[115px] tw-h-auto" alt="Oshyn logo" width="155" height="65" loading="lazy" />
                    </a>
                </div>
                <div id="newsletter" class="tw-flex tw-flex-col tw-justify-between lg:tw-border-l-[#e5e7eb25] lg:tw-border-l lg:tw-border-solid lg:tw-pl-10 lg:tw-ml-[5px] tw-mb-8">

                    <div class="tw-flex tw-flex-col tw-gap-3 tw-pb-8 lg:tw-col-start-4 lg:tw-row-start-1 tw-mb-8">
                        <a href="https://clutch.co/profile/oshyn" target="_blank" rel="noopener noreferrer">
                        <svg role="img" aria-labelledby="clutch-rating-title" width="70" height="14" viewBox="0 0 70 14" fill="none" xmlns="https://www.w3.org/2000/svg">
                            <title class="tw-sr-only" id="clutch-rating-title">Clutch 5-star rating</title>
                            <g clip-path="url(#clip0_29352_368)">
                                <path d="M2.70124 13.5062L7.09077 10.8532L11.4803 13.5062L10.3226 8.48963L14.1815 5.16131L9.1167 4.72718L7.09077 0L5.06483 4.72718L0 5.16131L3.85892 8.48963L2.70124 13.5062Z" fill="white"></path>
                                <path d="M59.5216 13.5062L63.9111 10.8532L68.3006 13.5062L67.1429 8.48963L71.0018 5.16131L65.937 4.72718L63.9111 0L61.8851 4.72718L56.8203 5.16131L60.6792 8.48963L59.5216 13.5062Z" fill="white"></path>
                                <path d="M16.9044 13.5062L21.2939 10.8532L25.6834 13.5062L24.5257 8.48963L28.3847 5.16131L23.3198 4.72718L21.2939 0L19.268 4.72718L14.2031 5.16131L18.062 8.48963L16.9044 13.5062Z" fill="white"></path>
                                <path d="M31.1114 13.5062L35.5009 10.8532L39.8904 13.5062L38.7328 8.48963L42.5917 5.16131L37.5269 4.72718L35.5009 0L33.475 4.72718L28.4102 5.16131L32.2691 8.48963L31.1114 13.5062Z" fill="white"></path>
                                <path d="M45.3145 13.5062L49.704 10.8532L54.0936 13.5062L52.9359 8.48963L56.7948 5.16131L51.73 4.72718L49.704 0L47.6781 4.72718L42.6133 5.16131L46.4722 8.48963L45.3145 13.5062Z" fill="white"></path>
                            </g>
                            <defs>
                                <clipPath id="clip0_29352_368">
                                    <rect width="70" height="14" fill="white"></rect>
                                </clipPath>
                            </defs>
                        </svg>
                        <p class="tw-mt-[7px] tw-text-sm">Oshyn is rated 4.9/5 on Clutch.co.</p>
                        </a>
                    </div>

                        <div class='oshyn-newsletter tw-flex tw-flex-col tw-gap-3 tw-mb-8 lg:tw-col-start-4 lg:tw-row-start-1 '>
                            <p class='tw-font-semibold tw-text-lg tw-font-secondary lg:tw-text-left'>
                                Sign up for product launches, promotions, & news
                            </p>

<form action="/404-Not-Found" class="tw-relative" id="newsletterForm" method="post"><input id="scController" name="scController" type="hidden" value="Footer" /><input id="scAction" name="scAction" type="hidden" value="SubmitNewsletterForm" /><input name="__RequestVerificationToken" type="hidden" value="QQhaD-3lYZYiU18Kh524LvYfahv3LpYJGbNSNyG3SkQnQ2P1lFVpFUoX3wcTMakBlXb3L358wcnvX6d-kEO6dhNI1trliqRYu7M8F8KBPQo1" />                                <label for="email" class="tw-sr-only email">Email address</label>
                                <input type='email'
                                       class='tw-px-6 tw-py-3 tw-border tw-bg-transparent tw-w-full tw-h-11 tw-text-white'
                                       placeholder='Enter your email address'
                                       required
                                       id="email"
                                       name="email" 
                                       autocomplete="email"/>
                                <input type='text'
                                       class='tw-hidden'
                                       placeholder='confirmation'
                                       id="confirmation"
                                       name="confirmation" />
                                <input type="hidden"
                                       class="tw-hidden"
                                       id="GoogleCaptchaToken"
                                       name="GoogleCaptchaToken"
                                       value="" />
                                <button type='submit' class='tw-absolute tw-w-0 tw-top-0 tw-right-0 tw-p-3 tw-pr-8 tw-text-center' value="Input" aria-label="submit">
                                    <svg aria-hidden="true" focusable="false" width='12' height='20' viewBox='0 0 12 20' fill='none' xmlns='https://www.w3.org/2000/svg'>
                                        <path d='M2.34503 19.3075L0.925781 17.8883L9.16028 9.65375L0.925781 1.41925L2.34503 0L11.9988 9.65375L2.34503 19.3075Z'
                                              fill='white' />
                                    </svg>
                                </button>
</form>
                            <div id="captchaErrorMessage" style="color: white;">
                            </div>

                            <p class='tw-opacity-75 tw-text-xs'>
                                By submitting your email, you agree to the Oshyn privacy policy and are opting-in to marketing
                                communications
                            </p>

                        </div>
                    <input type="hidden" id="recaptchaModelData" name="recaptchaModelData" data-sitekey="6LeEu5gUAAAAAFUGxMvc07PDGYMbuk1970pLoL3x" />
                </div>


                <div class="collapsible-company lg:tw-col-start-2 lg:tw-row-start-1 lg:tw-justify-self-center">
<strong class="panel-title">
Our Company
</strong>
<input type="checkbox" id="company" class="tw-sr-only" />
<label for="company" class="tw-block lg:tw-sr-only">Our Company</label>
<div class="company-content">
<ul class="footer-single-list">
    <li><a href="/about">About</a></li>
    <li><a href="/solutions">Solutions</a></li>
    <li><a href="/work">Work</a></li>
    <li><a href="/blog">Blog</a></li>
    <li><a href="/ebooks">Ebooks</a></li>
    <li><a href="/tools">Tools</a></li>
    <li><a href="/contact">Contact</a></li>
</ul>
</div>
</div>
<div class="collapsible-services lg:tw-col-start-3 lg:tw-row-start-1">
<strong class="panel-title">
Solutions
</strong>
<input type="checkbox" id="services" class="tw-sr-only" />
<label for="services" class="tw-block lg:tw-sr-only">Solutions</label>
<div class=" services-content">
<ul class="footer-single-list">
    <li><a href="/solutions/aeo-geo-optimization">AEO &amp; GEO</a></li>
    <li><a href="/solutions/move-to-composable-dxp">Composable DXP</a></li>
    <li><a href="/solutions/design-support">Design Support</a></li>
    <li><a href="/solutions/website-accessibility">Website Accessibility</a></li>
    <li><a href="/solutions/adobe-experience-cloud">Adobe</a><br />
    &nbsp;&rarr; <a href="/adobe-experience-cloud-services">AEM Services</a></li>
    <li><a href="/solutions/optimizely">Optimizely</a><br />
    &nbsp;&rarr; <a href="/optimizely-services">Optimizely Services</a></li>
    <li><a href="/solutions/sitecore">Sitecore</a><br />
    &nbsp;&rarr; <a href="/sitecore-services">Sitecore Services</a><br />
    &nbsp;&rarr; <a href="/solutions/why-sitecore">Why Sitecore?</a><br />
    &nbsp;&rarr; <a href="/solutions/sitecore-xm-cloud">SitecoreAI</a></li>
    <li><a href="/solutions/contentstack">Contentstack</a></li>
</ul>
</div>
</div>

                <div class="footer-contact-info lg:tw-col-start-1 lg:tw-row-start-1 lg:tw-self-start lg:tw-pt-20">
                    <div class="oshyn-social-media tw-flex tw-gap-10 tw-mb-14 lg:tw-mb-6">
                        <a class="newsletter-icon" href="https://x.com/Oshyn_Inc" target="_blank">
<img loading="lazy" src="https://media2.oshyn.com/-/media/Oshyn/Navigation/footer/icon_twitter.svg?rev=c3a32e2a96434fc4acf12816e15aa990&amp;hash=B89AB959EBD90A42D82527DE99D7F2C0" style="height:px; width:px;" alt="Oshyn Twitter" />
</a>
<a class="newsletter-icon" href="https://www.linkedin.com/company/oshyn/" target="_blank">
<img loading="lazy" src="https://media2.oshyn.com/-/media/Oshyn/Navigation/footer/icon_linkedIn.svg?rev=6b06eab5580f4ad0ab5e4399da79cb8e&amp;hash=FB95CB339BB1168D66928D83FEA31D76" style="height:px; width:px;" alt="Oshyn LinkedIn" />
</a>
<a class="newsletter-icon" href="https://www.facebook.com/oshyninc/" target="_blank">
<img loading="lazy" src="https://media2.oshyn.com/-/media/Oshyn/Navigation/footer/icon_facebook.svg?rev=27cd277b2e8c497e8baa3a85d799ea46&amp;hash=5BF357383D2FF6803D06E155C1A3774B" style="height:px; width:px;" alt="Oshyn Facebook" />
</a>
<a class="newsletter-icon" href="https://www.glassdoor.com/Overview/Working-at-Oshyn-EI_IE259197.11,16.htm" target="_blank">
<img loading="lazy" src="https://media2.oshyn.com/-/media/Oshyn/Navigation/footer/icon_glassdoor.svg?rev=52344a0235b44c22abef8c13b0c34ba2&amp;hash=E8B605FDAE7E00B2B0B825C85B6617EA" style="height:px; width:px;" alt="Oshyn Glassdoor" />
</a>
                    </div>
                    <div class="contact-address">
<svg aria-hidden="true" focusable="false" width="14" height="20" viewbox="0 0 14 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.48438C6.3125 9.48438 5.71875 9.25 5.21875 8.78125C4.75 8.28125 4.51562 7.6875 4.51562 7C4.51562 6.3125 4.75 5.73438 5.21875 5.26562C5.71875 4.76562 6.3125 4.51562 7 4.51562C7.6875 4.51562 8.26562 4.76562 8.73438 5.26562C9.23438 5.73438 9.48438 6.3125 9.48438 7C9.48438 7.6875 9.23438 8.28125 8.73438 8.78125C8.26562 9.25 7.6875 9.48438 7 9.48438ZM7 0.015625C5.71875 0.015625 4.54688 0.328125 3.48438 0.953125C2.42188 1.57812 1.57812 2.42187 0.953125 3.48438C0.328125 4.54688 0.015625 5.70312 0.015625 6.95312C0.015625 8.20312 0.375 9.64062 1.09375 11.2656C1.6875 12.5469 2.48438 13.9531 3.48438 15.4844C4.23438 16.5469 5.04688 17.625 5.92188 18.7188L7 19.9844L8.07812 18.7188C8.95312 17.625 9.76562 16.5469 10.5156 15.4844C11.5156 13.9531 12.3125 12.5469 12.9062 11.2656C13.625 9.64062 13.9844 8.20312 13.9844 6.95312C13.9844 5.70312 13.6719 4.54688 13.0469 3.48438C12.4219 2.42187 11.5781 1.57812 10.5156 0.953125C9.45312 0.328125 8.28125 0.015625 7 0.015625Z" fill="white"></path>
</svg>
<p class="list">10601 Walker Street, Suite 170<br />
Cypress, CA 90630</p>
</div>

<div class="contact-phone">
<svg aria-hidden="true" focusable="false" width="18" height="18" viewbox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.60938 7.78125C4.32812 9.1875 5.25 10.4688 6.375 11.625C7.53125 12.75 8.8125 13.6719 10.2188 14.3906L12.4219 12.1875C12.7031 11.9062 13.0469 11.8281 13.4531 11.9531C14.5781 12.3281 15.7656 12.5156 17.0156 12.5156C17.2969 12.5156 17.5312 12.6094 17.7188 12.7969C17.9062 12.9844 18 13.2188 18 13.5V17.0156C18 17.2969 17.9062 17.5312 17.7188 17.7188C17.5312 17.9062 17.2969 18 17.0156 18C14.7656 18 12.5938 17.5781 10.5 16.7344C8.40625 15.8594 6.5625 14.625 4.96875 13.0312C3.375 11.4375 2.14062 9.59375 1.26562 7.5C0.421875 5.40625 0 3.23438 0 0.984375C0 0.703125 0.09375 0.46875 0.28125 0.28125C0.46875 0.09375 0.703125 0 0.984375 0H4.5C4.78125 0 5.01562 0.09375 5.20312 0.28125C5.39062 0.46875 5.48438 0.703125 5.48438 0.984375C5.48438 2.23438 5.67188 3.42188 6.04688 4.54688C6.17188 4.95313 6.09375 5.29688 5.8125 5.57812L3.60938 7.78125Z" fill="white"></path>
</svg>
<p class="list">+1 (213) 483-1770</p>
</div>
                </div>
            </div>
            <hr class='tw-hidden lg:tw-block' />
            <div class="footer-policy tw-opacity-85 tw-flex tw-flex-col tw-gap-5 lg:tw-flex-row lg:tw-justify-between lg:tw-mb-48 lg:tw-mt-14 tw-text-center">
                <span class="rights-reserved">
                    &#169; 2026 Oshyn. All Rights Reserved.
                </span>
                <span class="version">
                    5.0.0.7250
                </span>
                <span class="policy">
                    <a href="/privacy-policy">Privacy Policy</a>
                </span>
            </div>
        </div>
    </div>



    </footer>


    

    <div id="lightbox" class="hidden">
        <button id="lightbox-close">&times;</button>
        <img id="lightbox-image" src="" alt="">
    </div>
</body>
</html>