CINXE.COM
White papers - Einride
<!DOCTYPE html><!-- Last Published: Fri Feb 14 2025 11:32:58 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="www.einride.tech" data-wf-page="6673dc4a5c0bfaf8eed896d2" data-wf-site="6543b0ac670da6bf2c551bf3" lang="en" data-wf-locale="en"><head><meta charset="utf-8"/><title>White papers - Einride</title><meta content="Download Einride’s white papers to get valuable insights into how digital, electric, and autonomous technologies can support more efficient and reliable freight operations while meeting CO2e targets." name="description"/><meta content="White papers - Einride" property="og:title"/><meta content="Download Einride’s white papers to get valuable insights into how digital, electric, and autonomous technologies can support more efficient and reliable freight operations while meeting CO2e targets." property="og:description"/><meta content="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/667b12d94034dc2e5dfaf471_Web%204K-_V7A1423_v2.jpeg" property="og:image"/><meta content="White papers - Einride" property="twitter:title"/><meta content="Download Einride’s white papers to get valuable insights into how digital, electric, and autonomous technologies can support more efficient and reliable freight operations while meeting CO2e targets." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/667b12d94034dc2e5dfaf471_Web%204K-_V7A1423_v2.jpeg" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/css/einride.a042fba03.min.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/654a022f1acbb52fa10e1666_favicon-32x32.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/654a02d2476fb0397e37d85e_symbol-black-02%402x.png" rel="apple-touch-icon"/><link href="https://einride.tech/white-papers" rel="canonical"/><!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-N9VTPS4W');</script> <!-- End Google Tag Manager --> <script> // Check if the dataLayer is defined window.dataLayer = window.dataLayer || []; // Get environment and version information from Webflow var isProduction = window.location.hostname.includes('einride.tech'); var environment = isProduction ? 'production' : (window.location.hostname.includes('staging') ? 'staging' : 'localhost'); var version = window.Webflow ? window.Webflow.siteInfo.page.version : 'unknown'; // Get page information var pagePath = window.location.pathname; var pageTitle = document.title; var previousPagePath = document.referrer !== "" ? document.referrer : null; // Get user's country from GA4 var userCountry = (window.dataLayer && window.dataLayer.length > 0 && window.dataLayer[0]['user_properties']) ? window.dataLayer[0]['user_properties']['country'] || '(not set)' : '(not set)'; // Get user's device using navigator.userAgent var userAgent = navigator.userAgent; var userDevice = getUserDevice(userAgent) || 'unknown'; // Push virtual_page_view event to the dataLayer dataLayer.push({ 'event': 'virtual_page_view', 'page_path': pagePath, 'title': pageTitle, 'previous_page_path': previousPagePath, 'country': userCountry, 'device': userDevice, 'environment': environment, 'version': version, // Add any other custom variables you want to push }); console.log('virtual_page_view event pushed to dataLayer. Check the console for details.'); // Push user_properties event to the dataLayer dataLayer.push({ 'event': 'user_properties', 'country': userCountry, 'device': userDevice, 'environment': environment, 'version': version, // Add any other custom variables you want to push }); console.log('user_properties event pushed to dataLayer. Check the console for details.'); // Track external link clicks, internal link clicks, CTA clicks, 404 pages, article page views, and video playback events document.addEventListener('click', function(event) { var clickedElement = event.target; // Check if the clicked element is an anchor tag with an external link if (clickedElement.tagName === 'A' && clickedElement.hostname !== window.location.hostname) { var linkText = clickedElement.innerText; var destination = clickedElement.href; // Push external_link_click event to the dataLayer dataLayer.push({ 'event': 'external_link_click', 'text': linkText, 'destination': destination, 'page_path': pagePath, 'previous_page_path': previousPagePath, }); console.log('external_link_click event pushed to dataLayer. Check the console for details.'); } // Check if the clicked element is an anchor tag with an internal link if (clickedElement.tagName === 'A' && clickedElement.hostname === window.location.hostname) { var internalLinkText = clickedElement.innerText; var internalDestination = clickedElement.href; // Push internal_link event to the dataLayer dataLayer.push({ 'event': 'internal_link', 'text': internalLinkText, 'destination': internalDestination, 'page_path': pagePath, 'previous_page_path': previousPagePath, }); console.log('internal_link event pushed to dataLayer. Check the console for details.'); } // Check if the clicked element is a button with class "CTA" if (clickedElement.tagName === 'BUTTON' && clickedElement.classList.contains('CTA')) { var ctaButtonText = clickedElement.innerText; var ctaDestinationPath = getButtonDestinationPath(clickedElement); // Push cta_click event to the dataLayer dataLayer.push({ 'event': 'cta_click', 'text': ctaButtonText, 'destination_path': ctaDestinationPath, 'page_path': pagePath, 'previous_page_path': previousPagePath, }); console.log('cta_click event pushed to dataLayer. Check the console for details.'); } }); // ... (rest of the code remains unchanged) // Function to get the user's device from userAgent function getUserDevice(userAgent) { // Your logic to determine the device from userAgent // Example: Check for specific keywords like 'Mobile', 'Tablet', etc. if (userAgent.match(/Mobile/i)) { return 'mobile'; } else if (userAgent.match(/Tablet/i)) { return 'tablet'; } else { return 'desktop'; } } </script> <style> body { -webkit-font-smoothing: antialiased; /* for Chrome and Safari */ -moz-osx-font-smoothing: grayscale; /* for Firefox */ font-synthesis: none; -moz-font-feature-settings: 'kern'; font-variant-numeric: slashed-zero tabular-nums; } .CookieDeclarationTableCell { line-height: 1.1 !important; } </style> <style> /* Hide duplicated links on desktop and tablet */ @media screen and (min-width: 768px) { .duplicated-links { display: none !important; /* Force hide duplicated links on desktop and tablet */ } } /* Show duplicated links and hide original links on mobile */ @media screen and (max-width: 767px) { .swapped-links { display: none !important; /* Force hide original Shop and Contact links on mobile */ } .duplicated-links { display: block !important; /* Force show duplicated Shop and Contact links on mobile */ } } </style> </head><body><div class="page-wrapper"><div class="w-embed"><style> .page-wrapper { overflow: clip !important; } * { -webkit-font-smoothing: antialiased; } /* Target the first collection item */ .eventhighlightsitem.grid.w-dyn-item:nth-child(1) { grid-column: span 2 / span 2 !important; } /* Target the second collection item */ .eventhighlightsitem.grid.w-dyn-item:nth-child(2) { grid-column: span 2 / span 2 !important; } .eventhighlightsitem.grid.w-dyn-item:nth-child(n+3) .col-lg-2 { grid-column: span 4 / span 4 !important; } .eventhighlightsitem.grid.w-dyn-item:nth-child(n+3) .col-lg-1 { justify-self: start !important; } .eventhighlightsitem.grid.w-dyn-item:nth-child(n+3) .col-lg-1:nth-child(2){ margin-top: 12px !important; } .eventSpeakersDropdown_list { width: 50% !important; max-width: 50% !important; } .eventsFiltersLink.title-2.custom-colors { color: inherit !important; } .agenda-collection-item_title[agenda-type="Break"] { color: rgba(30,31,31,0.6) !important; } .footer[inverted="on"] { background-color: var(--background--grouped--primaryelevated); } .footer[inverted="on"] .mega-title.inverted { color: var(--content--primary) !important; } .footer[inverted="on"] .paragraph.link.inverted{ color: var(--content--primary) !important; } .footer[inverted="on"] .paragraph.secondary.inverted{ color: var(--content--secondary) !important; } .navbar1_component[inverted="on"] { background-color: black; } .navbar1_component[inverted="on"] .navlink { color: var(--content--secondaryinverted) !important; } .navbar1_component[inverted="on"] .button { background-color: var(--background--grouped--primaryelevated) !important; color: var(--content-primary) !important; } .navbar1_component[inverted="on"] .dropdownmenu { background-color: black; } .navbar1_component[inverted="on"] .title-2.link { color: white !important; } .navbar1_component[inverted="on"] .paragraph.secondary { color: var(--content--secondaryinverted) !important; } .navbar1_component[inverted="on"] .navbar1_menu.mobile{ background-color: black !important; } .navbar1_component[inverted="on"] h3 { color: white !important; } .navbar1_component[inverted="on"] h3.secondary { color: var(--content--secondaryinverted) !important; } .navbar1_component[inverted="on"] .navbar1_menu-dropdown_toggle { color: white !important; } .navbar1_component[inverted="on"] .form-button-arrow { color: var(--content--primary) !important } .proposition-item-link:hover h3 { text-decoration: underline; } .tab.w--current .tabindice { background-color: var(--background--primaryinverted) !important; color: var(--content--primaryinverted) !important; } .tab:hover { color: var(--content--primary) !important; } .tab:hover .tabindice { color: var(--content--primaryinverted) !important; background-color: var(--background--primaryinverted) !important; } .simpletab.w--current .circlemarker{ display: block; } .simpletab .circlemarker{ display: none; } @media screen and (max-width: 991px) { iframe:not([src*="cookiebot.com"]){ position: absolute !important; top: 50% !important; left: 50% !important; height: 100vh !important; transform: translate(-50%, -50%) !important; width: 150vh !important; } #videoLoop div:first-child { position: static !important; } } .more-link:hover .on-hover-underline { text-decoration: underline; } .new_navbar1-dropdown.is-whatwedo:hover .new_navbar1-dropdown.is-more { z-index: 2138 !important; } .navlink-wwd:hover .navlink-more { z-index: 2138 !important; } .navbar1_component[inverted="on"] .navbar1_logo-image.is-light { display: block; } .navbar1_component[inverted="on"] .navbar1_logo-image.is-dark { display: none; } .navbar1_component[inverted="off"] .navbar1_logo-image.is-light { display: none; } .navbar1_component[inverted="off"] .navbar1_logo-image.is-dark { display: block; } .navbar1_component[inverted="on"] .new_navbar1-dropdown-more { background-color: var(--background--primaryinverted) !important; color: var(--contente--primaryinverted) !important; } .navbar1_component[inverted="on"] .new_navbar1-dropdown-wwd { background-color: var(--background--primaryinverted) !important; color: var(--contente--primaryinverted) !important; } .navbar1_component[inverted="on"] .new_navbar1-dropdown.dropdown-whatwedo.w-dropdown { background-color: transparent !important; } .navbar1_component .w-dropdown { background-color: transparent !important; } .navbar1_component[inverted="on"] .paragraph { color: var(--content--primaryinverted) !important; } .navbar1_component[inverted="on"] .textspan.secondary { color: var(--content--secondaryinverted) !important; } .navbar1_component[inverted="on"] .navlink8 { border-top: solid 1px var(--content--secondaryinverted) !important; } .navbar1_component[inverted="on"] .title-2 { color: var(--content--primaryinverted) !important; } .navbar1_component[inverted="on"] .button.secondary { color: var(--content--primary) !important; background-color: var(--background--primary) !important; } .footer a { text-decoration: none !important; } </style></div><div class="w-embed"><style> .press-collection-item.is-featured:nth-child(1) { grid-column-start: span 3; grid-column-end: span 3; grid-row-start: span 3; grid-row-end: span 3; } .press-collection-item.is-featured:nth-child(2) { grid-column-start: span 2; grid-column-end: span 2; grid-row-start: span 2; grid-row-end: span 2; } /* On mobile screens 767px and below */ @media (max-width: 767px) { .press-collection-item.is-featured:nth-child(1) { grid-column-start: span 1; grid-column-end: span 1; grid-row-start: span 1; grid-row-end: span 1; } .press-collection-item.is-featured:nth-child(2) { grid-column-start: span 1; grid-column-end: span 1; grid-row-start: span 1; grid-row-end: span 1; } } /* Targeting every even item */ .press-collection-item.is-main:nth-child(even) > .u-w-100 { aspect-ratio: 1/1; object-fit: cover; } /* Targeting every odd item */ .press-collection-item.is-main:nth-child(odd) > .u-w-100 { aspect-ratio: 3/4; object-fit: cover; } /* On mobile screens 767px and below */ @media (max-width: 767px) { .press-collection-item.is-main:nth-child(n+3) > .u-w-100 { display: none; } .press-collection-item.is-main:nth-child(n+3) { padding-top: 1.5rem; border-top: solid 1px var(--border--primary); } } .press-kit-item:hover .hover-underline { text-decoration: underline; } </style></div><div class="navbarwrapper"><div data-animation="default" class="navbar1_component w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" data-w-id="6781b82c-e052-b8a3-ece2-ff686991c081" inverted="off" role="banner" data-duration="400"><div id="whatwedo-content" class="navbar1_dropdown-wwd"><div id="whatwedo-content-grid" class="w-layout-grid navbar1_dropdown-wwd-grid"><div id="w-node-_68fab18d-36ee-50fe-47c6-b4907600d0ca-6991c081" class="spacer xxl"></div><div id="w-node-_68fab18d-36ee-50fe-47c6-b4907600d0cb-6991c081" class="col-lg-3 u-gap-16"><div class="paragraph-7 primary">Resources</div><div class="col u-gap-8"><a href="/insights" class="title-2 link">Insights</a><a href="/webinars" class="title-2 link">Webinars</a><a href="/white-papers" aria-current="page" class="title-2 link w--current">White papers</a></div></div><div id="w-node-_68fab18d-36ee-50fe-47c6-b4907600d0d5-6991c081" class="col-lg-3 u-gap-16"><div class="paragraph-7 primary">Company</div><div class="col u-gap-8"><a href="/about" class="title-2 link">About</a><a href="/press" class="title-2 link">Press releases</a><a href="/investors" class="title-2 link">Investor relations</a></div></div><div id="w-node-_68fab18d-36ee-50fe-47c6-b4907600d0df-6991c081" class="col-lg-3 u-gap-16"><div class="paragraph-7 primary">More</div><div class="col u-gap-8"><a href="https://shop.einride.tech/" target="_blank" class="title-2 link">Shop</a></div></div></div></div><div id="more-content" class="navbar1_dropdown-more"><div id="more-content-grid" class="w-layout-grid navbar1_dropdown-more-grid"><div id="w-node-_6c7cc260-6305-4e2b-d0c5-187691a747cf-6991c081" class="navwrappertop"><a href="/retired-pages/ecosystem-v2" class="link w-inline-block"><h2 class="title-2">Shipping Intelligence<br/><span class="textspan secondary">The power of Einride</span></h2></a><a href="/what-we-do" class="button secondary w-button">Explore</a></div><div id="w-node-_6c7cc260-6305-4e2b-d0c5-187691a747d8-6991c081" class="navwrapperbottom"><div id="w-node-_6c7cc260-6305-4e2b-d0c5-187691a747d9-6991c081" class="navlink4"><a href="/what-we-do/freight" class="link w-inline-block"><p class="paragraph-7">Freight →<br/><span class="textspan secondary">Every journey improved by technology</span></p></a></div><div id="w-node-_6c7cc260-6305-4e2b-d0c5-187691a747e0-6991c081" class="navlink8"><div class="div-block-18"><a href="/what-we-do/autonomy" class="link w-inline-block"><p class="paragraph-7">Autonomy →<br/><span class="textspan secondary">Purpose-built and working 24/7</span></p></a></div><div class="div-block-19"><a href="/what-we-do/charging" class="link w-inline-block"><p class="paragraph-7">Charging →<br/><span class="textspan secondary">Powering your heavy-duty journey</span></p></a></div><div class="div-block-20"><p>Connectivity →<br/><span class="textspan secondary">Safely connected wherever you go</span></p></div></div></div></div></div><div class="navbar1_container"><a href="/" class="navbar1_logo-link w-nav-brand"><img src="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/66017fb33272aa557765184d_Logo.svg" loading="lazy" alt="Einride logo." class="navbar1_logo-image is-dark"/><img src="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/667942b010cd0e264effea5a_Logo.svg" loading="lazy" alt="" class="navbar1_logo-image is-light"/></a><nav role="navigation" fs-scrolldisable-element="when-visible" class="navbar1_menu is-page-height-tablet w-nav-menu"><div class="navbar1_menu desktop"><div class="z-index-1002"><div data-hover="true" data-delay="0" class="new_navbar1-dropdown dropdown-whatwedo w-dropdown"><div class="new_navbar1-dropdown-toggle nv-pl-ins w-dropdown-toggle"><a id="whatwedo" href="/what-we-do" class="paragraph-7 navlink new_navbar1 navlink-wwd">What we do</a></div><nav class="new_navbar1-dropdown-list w-dropdown-list"><div id="whatwedo-content-grid" class="w-layout-grid new_navbar1-dropdown-more"><div id="w-node-ec1183a6-2f5f-3b5b-5f75-bf0b641ef533-6991c081" class="navwrappertop"><a href="/what-we-do" class="link w-inline-block"><h2 class="title-2">Shipping Intelligence<br/><span class="textspan secondary">The power of Einride</span></h2></a><a href="/what-we-do" class="button secondary w-button">Explore</a></div><div id="w-node-ec1183a6-2f5f-3b5b-5f75-bf0b641ef53c-6991c081" class="navwrapperbottom"><div id="w-node-ec1183a6-2f5f-3b5b-5f75-bf0b641ef53d-6991c081" class="navlink4"><a href="/what-we-do/freight" class="link more-link w-inline-block"><p class="paragraph-7"><span class="on-hover-underline">Freight →</span><br/><span class="textspan secondary">Every journey improved by technology</span></p></a></div><div id="w-node-ec1183a6-2f5f-3b5b-5f75-bf0b641ef545-6991c081" class="navlink8"><div class="div-block-18"><a href="/what-we-do/autonomy" class="link more-link w-inline-block"><p class="paragraph-7"><span class="on-hover-underline">Autonomy →</span><br/><span class="textspan secondary">Purpose-built and working 24/7</span></p></a></div><div class="div-block-19"><a href="/what-we-do/charging" class="link w-inline-block"><p class="paragraph-7">Charging →<br/><span class="textspan secondary">Powering your heavy-duty journey</span></p></a></div></div></div></div><div class="new_navbar1-dropdown_bg"></div></nav></div></div><a id="customers" href="/customers" class="paragraph-7 navlink is-customers">Customers</a><div class="z-index-1002"><div data-hover="true" data-delay="0" class="new_navbar1-dropdown dropdown-more w-dropdown"><div class="new_navbar1-dropdown-toggle w-dropdown-toggle"><div id="more" class="paragraph-7 navlink new_navbar1 navlink-more">More</div></div><nav class="new_navbar1-dropdown-list w-dropdown-list"><div id="more-content-grid" class="w-layout-grid new_navbar1-dropdown-wwd"><div id="w-node-e4c502f7-7a73-be81-0277-c705b83af79f-6991c081" class="spacer xxl"></div><div id="w-node-e4c502f7-7a73-be81-0277-c705b83af7a0-6991c081" class="col-lg-3 u-gap-16"><div class="paragraph-7 primary">Resources</div><div class="col u-gap-8"><a href="/insights" class="title-2 link">Insights</a><a href="/webinars" class="title-2 link">Webinars</a><a href="/white-papers" aria-current="page" class="title-2 link w--current">White papers</a></div></div><div id="w-node-e4c502f7-7a73-be81-0277-c705b83af7aa-6991c081" class="col-lg-3 u-gap-16"><div class="paragraph-7 primary">Company</div><div class="col u-gap-8"><a href="/about" class="title-2 link">About</a><a href="/press" class="title-2 link">Press releases</a><a href="/investors" class="title-2 link">Investor relations</a></div></div><div id="w-node-e4c502f7-7a73-be81-0277-c705b83af7b4-6991c081" class="col-lg-3 u-gap-16"><div class="paragraph-7 primary">More</div><div class="col u-gap-8"><a href="https://shop.einride.tech/" target="_blank" class="title-2 link">Shop</a></div></div></div><div class="new_navbar1-dropdown_bg"></div></nav></div></div></div><div class="navbar1_menu mobile"><div class="div-block-22"><a href="/what-we-do" class="link w-inline-block"><div class="row u-rw-stretch"><h3 class="mega-title u-t-down c-menu">What we do</h3><h3 class="mega-title secondary c-menu">→</h3></div></a><a href="/what-we-do/freight" class="link w-inline-block"><div class="row u-rw-stretch"><h3 class="mega-title u-t-down c-menu">Freight</h3><h3 class="mega-title secondary c-menu">→</h3></div></a><a href="/what-we-do/autonomy" class="link w-inline-block"><div class="row u-rw-stretch"><h3 class="mega-title u-t-down c-menu">Autonomy</h3><h3 class="mega-title secondary c-menu">→</h3></div></a><a href="/what-we-do/charging" class="link w-inline-block"><div class="row u-rw-stretch"><h3 class="mega-title u-t-down c-menu">Charging</h3><h3 class="mega-title secondary c-menu">→</h3></div></a></div><div class="spacer t-48-m-0"></div><div data-delay="0" data-hover="false" class="navbar1_menu-dropdown w-dropdown"><div class="navbar1_menu-dropdown_toggle w-dropdown-toggle"><div class="text-size t-20-m-14">Resources</div></div><nav class="navbar1_menu-dropdown_list w-dropdown-list"><a href="/insights" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">Customers</h3></a><a href="/insights" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">Insights</h3></a><a href="/webinars" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">Webinars</h3></a><a href="/white-papers" aria-current="page" class="link w-inline-block w--current"><h3 class="mega-title u-t-down c-menu">White papers</h3></a></nav></div><div data-delay="0" data-hover="false" class="navbar1_menu-dropdown w-dropdown"><div class="navbar1_menu-dropdown_toggle w-dropdown-toggle"><div class="text-size t-20-m-14">Company</div></div><nav class="navbar1_menu-dropdown_list w-dropdown-list"><a href="/about" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">About</h3></a><a href="/press" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">Press releases</h3></a><a href="/investors" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">Investor relations</h3></a></nav></div><div data-delay="0" data-hover="false" class="navbar1_menu-dropdown w-dropdown"><div class="navbar1_menu-dropdown_toggle w-dropdown-toggle"><div class="text-size t-20-m-14">More</div></div><nav class="navbar1_menu-dropdown_list w-dropdown-list"><a href="https://shop.einride.tech/" target="_blank" class="link w-inline-block"><h3 class="mega-title u-t-down c-menu">Shop</h3></a></nav></div><div class="spacer t-48-m-0"></div><a href="/transformation-assessment" class="form-button is-navbar positive w-inline-block"><h2 class="title-2 form-button-label navbar">Go Einride</h2><h3 class="title-3 form-button-arrow navbar">→</h3></a></div><div id="goelectric" class="navbar1_menu-buttons hide-tablet"><a aria-label="" href="https://einride.tech/contact?topic=Sales" class="button insights-cta w-button">Go Einride</a></div></nav><div class="navbar1_menu-ctas"><div class="navbar1_menu-button w-nav-button"><div class="menu-icon1"><div data-w-id="9918062d-f028-ee8e-69d4-a0da248e7a53" data-is-ix2-target="1" data-animation-type="lottie" data-src="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/66504dd674373338f4be343f_einride-menu-lottie.json" data-loop="0" data-direction="1" data-autoplay="0" data-renderer="svg" data-default-duration="3" data-duration="0"></div></div></div><a href="/transformation-assessment" class="menu-icon1 is-second w-inline-block"><div class="icon-embed-xxsmall w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" style="" viewBox="0 0 20 20" fill="currentColor" preserveAspectRatio="xMidYMid meet" aria-hidden="true" role="img"> <path d="M14.2796 9.34L7.91961 17.12L7.39961 15.78L9.41961 10.86H5.99961L5.71961 10.16L12.0796 2.4L12.5996 3.72L10.3796 8.64H13.9996L14.2796 9.34Z" fill="currentColor" style="fill:#1E1E1F;fill:color(display-p3 0.1176 0.1176 0.1216);fill-opacity:1;"/> </svg></div></a></div></div></div></div><section class="section"><div class="grid u-pt-24 u-bt-1 m-bt-0"><div id="w-node-_84db9fbd-9772-30cc-b43f-994fb0bead7e-eed896d2" class="col-lg-4 m-12"><h1 class="mega-title col-lg-10">White papers</h1></div><div id="w-node-_84db9fbd-9772-30cc-b43f-994fb0bead81-eed896d2" class="col-lg-8"><p class="paragraph-7 primary">Download Einride's white papers to get valuable insights into how digital, electric, and autonomous technologies can support more efficient and reliable freight operations while meeting CO2e targets.</p></div></div></section><section class="section"><div class="row u-pt-24 u-bt-1"><div class="press-collection-wrapper w-dyn-list"><div role="list" class="press-collection-list grid _5col w-dyn-items"><div role="listitem" class="press-collection-item is-featured w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/671766006351d1dac507a338_CET_Snowy1x1.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 56vw, 60vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/671766006351d1dac507a338_CET_Snowy1x1-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/671766006351d1dac507a338_CET_Snowy1x1-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/671766006351d1dac507a338_CET_Snowy1x1-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/671766006351d1dac507a338_CET_Snowy1x1.webp 1500w" class="u-w-100 u-ratio-1-1"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>How to beat diverse weather conditions with electric freight</p><p class="secondary">Discover how weather conditions impact battery and vehicle performance, and how to address these challenges through different measures.</p></div><a aria-label="How to beat diverse weather conditions with electric freight" href="/white-paper/how-to-beat-diverse-weather-conditions-with-electric-freight" class="button insights-cta w-button">Download</a></div></div><div role="listitem" class="press-collection-item is-featured w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66ea8d0e749a3b4bc98d3a24_GreenApple1x1.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 56vw, 60vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66ea8d0e749a3b4bc98d3a24_GreenApple1x1-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66ea8d0e749a3b4bc98d3a24_GreenApple1x1-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66ea8d0e749a3b4bc98d3a24_GreenApple1x1.webp 1000w" class="u-w-100 u-ratio-1-1"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>5 reasons grocery retailers should make the switch to electric freight today</p><p class="secondary">Discover why grocery retail is the perfect sector for leading the urgently needed transformation of road freight.</p></div><a aria-label="5 reasons grocery retailers should make the switch to electric freight today" href="/white-paper/5-reasons-grocery-retailers-should-make-the-switch-to-electric-freight-today" class="button insights-cta w-button">Download</a></div></div></div></div></div></section><section class="section"><div class="spacer-xlarge"></div><div class="row"><div class="grid press-filters"><h2 id="w-node-_1b65509f-9532-b134-2a70-16f730e6dd97-eed896d2" class="sizing-dont">All white papers</h2></div></div><div class="spacer-xlarge"></div><div class="row u-pt-24 u-bt-1"><div class="press-collection-wrapper w-dyn-list"><div fs-cmsfilter-element="list" role="list" class="press-collection-list grid _3col w-dyn-items"><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-1600.webp 1600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-2000.webp 2000w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-2600.webp 2600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9-p-3200.webp 3200w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66e04e2bcde4edf00dc74993_CostAbatement16x9.webp 3840w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>Understanding carbon abatement cost in transportation</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">Discover what carbon abatement cost refers to, the different types of carbon abatement, and how to leverage it within transportation. </p><div class="spacer-xsmall"></div><a aria-label="Understanding carbon abatement cost in transportation" href="/white-paper/carbon-abatement-cost" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9-p-1600.webp 1600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9-p-2000.webp 2000w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d0162548f0b6b449c61e93_StationOverhead16x9.webp 2160w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>8 myths about electric freight – debunked</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">Discover what carbon abatement cost refers to, the different types of carbon abatement, and how to leverage it within transportation. </p><div class="spacer-xsmall"></div><a aria-label="8 myths about electric freight – debunked" href="/white-paper/8-myths-about-electric-freight---debunked" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9-p-1600.webp 1600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9-p-2000.webp 2000w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c201baa0a430026ae45c89_CET_night_16x9.webp 2500w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>Future-proofing city operations with electric freight</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">Restrictions on heavy-duty vehicles in cities are increasing around the world, but this doesn’t need to hinder businesses from operating efficiently.</p><div class="spacer-xsmall"></div><a aria-label="Future-proofing city operations with electric freight" href="/white-paper/future-proofing-city-operations-with-electric-freight" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9-p-1600.webp 1600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9-p-2000.webp 2000w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c210e6cad0599fd5a8cebd_Charging_Plug_16x9.webp 2500w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>Battery electric vs. hydrogen fuel cell vs. HVO – which is the winning technology?</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">A comparison of the three most talked about alternatives to diesel – battery electric, HVO biofuel, and hydrogen fuel cell – based on four essential factors for long-term viability.</p><div class="spacer-xsmall"></div><a aria-label="Battery electric vs. hydrogen fuel cell vs. HVO – which is the winning technology?" href="/white-paper/battery-electric-vs-hydrogen-fuel-cell-vs-hvo---which-is-the-winning-technology" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9-p-1600.webp 1600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9-p-2000.webp 2000w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c1ff6b5e7d0380c3f463d9_port_containers_16x9.webp 2500w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>What are Scope 3 emissions and why should you report them?</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">From 2025, businesses operating in the EU will be required to their Scope 3 emissions. How should they navigate meeting this important requirement? </p><div class="spacer-xsmall"></div><a aria-label="What are Scope 3 emissions and why should you report them?" href="/white-paper/what-are-scope-3-emissions-and-why-should-you-report-them" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c200f3e42aae98dc7af76b_Einride_ecosystem_update_.16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c200f3e42aae98dc7af76b_Einride_ecosystem_update_.16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c200f3e42aae98dc7af76b_Einride_ecosystem_update_.16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c200f3e42aae98dc7af76b_Einride_ecosystem_update_.16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c200f3e42aae98dc7af76b_Einride_ecosystem_update_.16x9.webp 1370w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>Make the switch: The 6 steps to intelligent, sustainable road freight</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">To show you how businesses can accelerate electrification without complexity or costly overheads, here are Einride’s 6 steps to intelligent, sustainable road freight.</p><div class="spacer-xsmall"></div><a aria-label="Make the switch: The 6 steps to intelligent, sustainable road freight" href="/white-paper/make-the-switch-the-6-steps-to-intelligent-sustainable-road-freight" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9-p-1600.webp 1600w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9-p-2000.webp 2000w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/65c20015251cf51b05c66cd8_LA_station_16x9.webp 2498w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>The physical and digital infrastructure behind intelligent electric freight</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">Switching to electric freight isn’t as simple as replacing every diesel truck with an electric truck. There are a range of infrastructure components needed to maximize cost-effectiveness.</p><div class="spacer-xsmall"></div><a aria-label="The physical and digital infrastructure behind intelligent electric freight" href="/white-paper/the-physical-and-digital-infrastructure-behind-intelligent-electric-freight" class="button-text">Download</a></div></div></div><div role="listitem" class="press-collection-item is-main w-dyn-item"><img src="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d01141067ce9183e6a218a_LeaveDieselInTheDust16x9.webp" loading="lazy" alt="" sizes="(max-width: 479px) 93vw, (max-width: 767px) 96vw, (max-width: 991px) 47vw, 33vw" srcset="https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d01141067ce9183e6a218a_LeaveDieselInTheDust16x9-p-500.webp 500w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d01141067ce9183e6a218a_LeaveDieselInTheDust16x9-p-800.webp 800w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d01141067ce9183e6a218a_LeaveDieselInTheDust16x9-p-1080.webp 1080w, https://cdn.prod.website-files.com/6543b1960f267c32c63ebb55/66d01141067ce9183e6a218a_LeaveDieselInTheDust16x9.webp 1368w" class="u-w-100"/><div class="press-collection-item_content"><div class="press-collection-item_texts"><p>Leave diesel in the dust: Future-proofing operations with intelligent electric trucks</p><p fs-cmsfilter-field="date" class="secondary hide">2024</p><p class="secondary">In addition to the emissions-savings they unlock, electric freight operations can be far more cost-effective than diesel-based operations in the long run.</p><div class="spacer-xsmall"></div><a aria-label="Leave diesel in the dust: Future-proofing operations with intelligent electric trucks" href="/white-paper/leave-diesel-in-the-dust" class="button-text">Download</a></div></div></div></div></div></div><div class="spacer-large"></div></section><div class="spacer-xlarge"></div><section class="section"><div class="grid u-pt-24 u-bt-1 mobile-2-col"><div id="w-node-ce19be65-860f-bf00-c6d6-34fcda42339f-eed896d2" class="col-lg-8 u-w-100 mobile-2"><div class="col"><div class="paragraph-7">Get the latest on electrification and all things Einride<br/><span class="textspan secondary">Subscribe below</span></div><div class="spacer xl t-40-m-32-p-0"></div><div class="w-form"><form id="wf-form-Whitepaper-Page-Signup-Form" name="wf-form-Whitepaper-Page-Signup-Form" data-name="Whitepaper Page Signup Form" method="get" data-wf-flow="a68bcb0627cd1f29e27372b2" data-wf-page-id="6673dc4a5c0bfaf8eed896d2" data-wf-element-id="ce19be65-860f-bf00-c6d6-34fcda4233a8"><div class="row mobile-vertical"><input class="emailfield mega-title w-input" maxlength="256" name="EMAIL-3" data-name="EMAIL 3" placeholder="Email" type="email" id="EMAIL-3" required=""/><input type="submit" data-wait="•••" class="submitbutton mega-title w-button" value="→"/></div></form><div class="success-message w-form-done"><div class="mega-title positive">Done!</div></div><div class="error-message w-form-fail"><div class="paragraph-7 negative">Something went wrong while submitting the form.</div></div></div><div class="spacer xl hide-mobile-landscape"></div></div></div></div><div class="spacer xxl t-48-m48-p-24"></div></section><div class="spacer-huge"></div><footer inverted="off" class="section inverted footer"><div class="row"><h3 class="mega-title inverted">Einride</h3></div><div class="spacer xl mobile-48"></div><div class="grid u-gap-40"><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cbd-b9cf5cb7" class="col-lg-3 m-12 footerhero"><div class="col"><a href="/what-we-do/freight" class="paragraph-7 link inverted mobile-footer title-1">Freight</a><a href="/what-we-do/autonomy" class="paragraph-7 link inverted mobile-footer title-1">Autonomy</a><a href="/what-we-do/charging" class="paragraph-7 link inverted mobile-footer title-1">Charging</a><a href="https://shop.einride.tech" class="paragraph-7 link inverted mobile-footer title-1 swapped-links">Shop</a><a href="/contact" class="paragraph-7 link inverted mobile-footer title-1 duplicated-links">Contact</a></div></div><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cc7-b9cf5cb7" class="col-lg-3 m-12"><div class="col u-gap-8 hide-mobile-landscape"><a href="https://www.instagram.com/einride/" class="paragraph-7 link inverted">Instagram</a><a href="https://www.facebook.com/Einrideofficial/" class="paragraph-7 link inverted">Facebook</a><a href="https://www.linkedin.com/company/einride/" class="paragraph-7 link inverted">LinkedIn</a><a href="https://www.youtube.com/einride" class="paragraph-7 link inverted">YouTube</a><a href="https://twitter.com/einrideofficial" class="paragraph-7 link inverted">X</a></div></div><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cd3-b9cf5cb7" class="col-lg-6 u-gap-24 m-12"><div class="grid-lg-6 is-mobile-row"><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cd5-b9cf5cb7" class="col-lg-2"><div class="paragraph-7 primary inverted">Products</div></div><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cd8-b9cf5cb7" class="col-lg-4"><div class="col u-gap-8"><a href="/what-we-do/freight/transform" class="paragraph-7 link inverted">Transform</a><a href="/what-we-do/freight/ship" class="paragraph-7 link inverted">Ship</a><a href="/what-we-do/autonomy#automate" class="paragraph-7 link inverted">Automate</a><a href="/what-we-do/charging#charge" class="paragraph-7 link inverted">Charge</a></div></div></div><div class="grid-lg-6 is-mobile-row"><div id="w-node-_6813138a-7814-d382-985d-dbf433610189-b9cf5cb7" class="col-lg-2"><div class="paragraph-7 primary inverted">Company</div></div><div id="w-node-_6813138a-7814-d382-985d-dbf43361018c-b9cf5cb7" class="col-lg-4"><div class="col u-gap-8"><a href="/about" class="paragraph-7 link inverted">About</a><a href="/press" class="paragraph-7 link inverted">Press</a><a href="/investors" class="paragraph-7 link inverted">Investor relations</a><a href="/contact" class="paragraph-7 link inverted swapped-links">Contact</a><a href="https://shop.einride.tech" class="paragraph-7 link inverted duplicated-links">Shop</a></div></div></div><div class="grid-lg-6 is-mobile-row"><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5ce1-b9cf5cb7" class="col-lg-2"><div class="paragraph-7 primary inverted">Resources</div></div><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5ce4-b9cf5cb7" class="col-lg-4"><div class="col u-gap-8"><a href="/webinars" class="paragraph-7 link inverted">Webinars</a><a href="/insights" class="paragraph-7 link inverted">Insights</a><a href="/customers" class="paragraph-7 link inverted">Customer stories</a><a href="/white-papers" aria-current="page" class="paragraph-7 link inverted w--current">White papers</a></div></div></div><div class="hide-d-show-m"><div class="grid-lg-6 is-mobile-row"><div id="w-node-d80aebd9-691b-d71e-7434-a9437d4fcffe-b9cf5cb7" class="col-lg-2"><div class="paragraph-7 primary inverted">Social</div></div><div id="w-node-d80aebd9-691b-d71e-7434-a9437d4fd001-b9cf5cb7" class="col-lg-4"><div class="col u-gap-8"><a href="https://www.instagram.com/einride/" class="paragraph-7 link inverted">Instagram</a><a href="https://www.facebook.com/Einrideofficial/" class="paragraph-7 link inverted">Facebook</a><a href="https://www.linkedin.com/company/einride/" class="paragraph-7 link inverted">LinkedIn</a><a href="https://www.youtube.com/einride" class="paragraph-7 link inverted">YouTube</a><a href="https://twitter.com/einrideofficial" class="paragraph-7 link inverted">X</a></div></div></div></div></div></div><div class="spacer xxl mobile-64"></div><div class="grid u-gap-40 is-footer-bottom"><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cfa-b9cf5cb7" class="col-lg-6 m-12"><div class="paragraph-7 inverted">© 2024 Einride. All rights reserved.</div></div><div id="w-node-f5c7733c-7c59-8c80-05c3-165fb9cf5cfd-b9cf5cb7" class="col-lg-6 m-12"><div class="row u-rw-stretch u-row-s-v is-footer-policies"><a href="https://careers.einride.tech" class="paragraph-7 link inverted">Careers</a><a href="/privacy/impressum" class="paragraph-7 link inverted">Impressum</a><a href="/privacy/privacy-policy" class="paragraph-7 link inverted">Privacy and Cookie Policy</a></div></div></div></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=6543b0ac670da6bf2c551bf3" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/6543b0ac670da6bf2c551bf3/js/einride.6dea01ee.6cdb683799e3473e.js" type="text/javascript"></script><!-- Google Tag Manager (noscript) --> <noscript> <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N9VTPS4W" height="0" width="0" style="display:none;visibility:hidden"> </iframe> </noscript> <!-- End Google Tag Manager (noscript) --> <!-- [Attributes by Finsweet] Disable scrolling --> <script defer src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-scrolldisable@1/scrolldisable.js"></script> <!--🤙 JS: Slater.app/7752--> <script>let v="1.0";document.addEventListener("DOMContentLoaded", function() {function loadeinride(e){let t=document.createElement("script");t.setAttribute("src",e),t.setAttribute("type","module"),document.body.appendChild(t),t.addEventListener("load",()=>{console.log("Slater loaded Einride (Slater.app/7752) 🤙")}),t.addEventListener("error",e=>{console.log("Error loading file",e)})}let src=window.location.host.includes("webflow.io")?"https://slater.app/7752.js":"https://assets.slater.app/slater/7752.js?v="+v;loadeinride(src);})</script> <!-- Start of HubSpot Embed Code --> <script type="text/javascript" id="hs-script-loader" async defer src="//js-eu1.hs-scripts.com/145013763.js"></script> <!-- End of HubSpot Embed Code --><!-- [Attributes by Finsweet] CMS Filter --> <script async src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsfilter@1/cmsfilter.js"></script> <!-- [Attributes by Finsweet] CMS Load --> <script async src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsload@1/cmsload.js"></script></body></html>