/* =========================================================
   UNWIRED: Bricks + ACSS System Layer (single mobile stylesheet)
   ========================================================= */

/* =========================================================
   HEADER - MOBILE
========================================================= */
@media (max-width: 767px) {
  #brx-header {
    top: 24px;
    margin-top: 24px;
  }

  #brx-header .l-container.v-container--header {
    width: 100%;
    max-width: none;
  }

  .c-header {
    width: 100%;
    background: transparent;
    overflow: visible;
    padding-inline: 16px;
  }

  .c-header__shell {
    position: relative;
    width: 100%;
    min-height: 64px;
    padding: 0 16px;
    border-radius: 16px;
    overflow: visible;
  }

  .c-header__frame,
  .c-header__bar {
    width: 100%;
    min-height: 64px;
  }

  .c-header__brand {
    flex: 0 0 auto;
  }

  .c-header__brand-link {
    display: flex;
    align-items: center;
  }

  .c-header__logo--sticky {
    display: none;
  }

  .c-header__stage {
    flex: 1 1 auto;
    min-width: 0;
  }

  .c-header__bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }

  /* mobile order */
  #brxe-irxcgr {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: auto;
    margin-left: 0;
  }

  .c-header__actions {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: auto;
  }

  .c-header__icon-globe,
  .c-header__login {
    display: none;
  }

  .c-header__icon-search {
    order: 1;
    display: inline-flex;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex: 0 0 auto;
    cursor: pointer;
  }

  .c-header__cta {
    order: 2;
    min-height: 40px;
    padding: 8px 16px;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
    white-space: nowrap;
  }

  /* mobile nav toggle */
   .c-header__nav .bricks-nav-menu-wrapper {
    display: none;
  }

  .c-header__nav .bricks-mobile-menu-toggle {
    display: inline-flex;
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .c-header__nav .bricks-mobile-menu-toggle .bar-top,
  .c-header__nav .bricks-mobile-menu-toggle .bar-center,
  .c-header__nav .bricks-mobile-menu-toggle .bar-bottom {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--G50);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease;
  }

  .c-header__nav .bricks-mobile-menu-toggle .bar-top {
    top: 5px;
  }

  .c-header__nav .bricks-mobile-menu-toggle .bar-center {
    top: 11px;
  }

  .c-header__nav .bricks-mobile-menu-toggle .bar-bottom {
    top: 17px;
  }

  .c-header__nav .bricks-mobile-menu-toggle[aria-expanded="true"] .bar-top {
    top: 11px;
    transform: rotate(45deg);
  }

  .c-header__nav .bricks-mobile-menu-toggle[aria-expanded="true"] .bar-center {
    opacity: 0;
  }

  .c-header__nav .bricks-mobile-menu-toggle[aria-expanded="true"] .bar-bottom {
    top: 11px;
    transform: rotate(-45deg);
  }

  .c-header__nav .bricks-mobile-menu-wrapper {
    display: block;
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    padding: 8px;
    background: var(--G700);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s ease;
    z-index: 2000;
    overflow: auto;
    max-height: calc(100vh - 120px);
    height: fit-content;
  }

  .c-header__nav .bricks-mobile-menu-toggle[aria-expanded="true"] + .bricks-mobile-menu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .c-header__nav .bricks-mobile-menu-overlay {
    display: none;
  }

  .c-header__nav .bricks-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .c-header__nav .bricks-mobile-menu > li {
    margin: 0;
    width: 100%;
  }

  .c-header__nav .bricks-mobile-menu > li > a,
  .c-header__nav .bricks-mobile-menu > li > .brx-submenu-toggle > a,
  .c-header__nav .bricks-mobile-menu > li > .brx-open > a {
    display: block;
    padding: 8px 0;
    color: var(--G50);
    text-decoration: none;
    font-size: var(--text-m);
    line-height: var(--text-m-line-height);
  }

  .c-header__nav .bricks-mobile-menu .menu-item-has-children > .brx-submenu-toggle,
  .c-header__nav .bricks-mobile-menu .menu-item-has-children > .brx-open {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .c-header__nav .bricks-mobile-menu .menu-item-has-children > .brx-submenu-toggle > button,
  .c-header__nav .bricks-mobile-menu .menu-item-has-children > .brx-open > button,
  .c-header__nav .bricks-mobile-menu .menu-item-has-children > button,
  .c-header__nav .bricks-mobile-menu .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--G50);
    box-shadow: none;
  }

  .c-header__nav .bricks-mobile-menu .sub-menu {
    display: none;
    margin: 0;
    padding: 0 0 8px 16px;
    list-style: none;
  }

  .c-header__nav .bricks-mobile-menu .brx-open + .sub-menu,
  .c-header__nav .bricks-mobile-menu .menu-item.open > .sub-menu,
  .c-header__nav .bricks-mobile-menu .menu-item-has-children.open > .sub-menu {
    display: block;
  }

  .c-header__nav .bricks-mobile-menu .sub-menu li {
    margin: 0;
  }

  .c-header__nav .bricks-mobile-menu .sub-menu a {
    display: block;
    padding: 10px 0;
    color: var(--G100);
    text-decoration: none;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
  }

  .c-header__nav .bricks-mobile-menu .brx-megamenu {
    display: none;
  }

  body.bricks-is-frontend.bricks-is-frontend .c-header__nav .bricks-mobile-menu a:focus,
  body.bricks-is-frontend.bricks-is-frontend .c-header__nav .bricks-mobile-menu a:focus-visible,
  body.bricks-is-frontend.bricks-is-frontend .c-header__nav .bricks-mobile-menu button:focus,
  body.bricks-is-frontend.bricks-is-frontend .c-header__nav .bricks-mobile-menu button:focus-visible {
    outline: none;
    box-shadow: none;
  }

  /* mobile search */
  .c-header__search {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    background: transparent;
    z-index: 20;
    overflow: visible;
  }

  .c-header__shell.is-search-open {
    min-height: 64px;
    padding: 0 16px;
  }

  .c-header__shell.is-search-open .c-header__brand,
  .c-header__shell.is-search-open .c-header__actions,
  .c-header__shell.is-search-open #brxe-irxcgr {
    display: none;
  }

  .c-header__shell.is-search-open .c-header__search {
    display: flex;
    align-items: center;
  }

  .c-header__shell.is-search-open .c-header__frame,
  .c-header__shell.is-search-open .c-header__bar {
    min-height: 64px;
    align-items: center;
  }

  .c-header__search-form,
  .c-header__search-form-el,
  .c-header__search-row {
    width: 100%;
  }

  .c-header__search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
  }

  .c-header__search-stack {
    position: relative;
    min-width: 0;
  }

  .c-header__search-field {
    min-height: 40px;
    padding: 10px 8px;
    border-radius: 8px;
  }

  .c-header__search-icon,
  .c-header__search-close {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .c-header__search-icon svg,
  .c-header__search-close svg {
    width: 20px;
    height: 20px;
  }

  .c-header__search-input {
    padding: 0 8px;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
  }

  .c-header__search-submit {
    width: 79px;
    min-width: 79px;
    min-height: 40px;
    padding: 8px 16px;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
  }

  .c-header__search-results {
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    border-radius: 12px;
  }

  .c-header__search-result,
  .c-header__search-empty {
    padding: 8px;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
  }

  /* mobile breadcrumbs */
  .c-breadcrumbs {
    width: 100%;
    margin-top: var(--uw-space-24);
    margin-bottom: var(--uw-space-48);
    padding-right: 16px;
    padding-left: 16px;
}

.c-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "brand brand"
      "company resources"
      "legal legal";
    column-gap: 32px;
    row-gap: 24px;
    align-items: start;
  }

  .c-footer__brand {
    grid-area: brand;
    gap: 24px;
    min-width: 0;
  }

  .c-footer__nav-col--company {
    grid-area: company;
    min-width: 0;
  }

  .c-footer__nav-col--resources {
    grid-area: resources;
    min-width: 0;
  }

  .c-footer__nav-col--legal {
    grid-area: legal;
    min-width: 0;
  }

  .c-footer__nav-col {
    gap: 8px;
  }

  .c-footer__menu .bricks-nav-menu {
    gap: 8px;
  }

  .c-footer__menu .bricks-nav-menu > li {
    margin: 0;
  }

  .c-footer__menu .bricks-nav-menu a {
    line-height: 22px;
  }

  .c-footer__bottom {
    padding-block: 16px;
    gap: 1px;
    align-items: center;
  }

  .c-footer__copyright {
    max-width: 211px;
  }

  .c-footer__socials {
    gap: 7px;
  }
}

@media (max-width: 767px) {
  .c-hero--switcher {
    background-image: none;
  }

  .c-hero--switcher::before,
  .c-hero--switcher::after {
    content: none;
    display: none;
  }

  .c-hero--switcher > .l-container.v-container--content {
    padding-inline: var(--uw-gutter);
  }

  .c-hero--switcher .c-hero__wrap {
    gap: var(--uw-space-24);
  }

  .c-hero--switcher .c-hero__main {
    gap: var(--uw-space-24);
  }

  .c-hero--switcher .c-hero__intro {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    text-align: left;
  }

  .c-hero--switcher .c-hero__intro > .brxe-heading,
  .c-hero--switcher .c-hero__intro > .brxe-text-basic,
  .c-hero--switcher .c-hero__intro > .c-hero__points {
    margin: 0;
  }

  .c-hero--switcher .c-hero__intro > .brxe-heading + .brxe-text-basic {
    margin-top: var(--uw-space-8);
  }

  .c-hero--switcher .c-hero__intro > .brxe-text-basic + .c-hero__points {
    margin-top: var(--uw-space-24);
  }

  .c-hero--switcher .c-hero__points {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: var(--uw-space-8);
    column-gap: var(--uw-space-8);
    width: 100%;
  }

  .c-hero--switcher .c-hero__points > li {
    margin: 0;
  }

  .c-hero--switcher .c-hero__cta {
    justify-content: flex-start;
  }

  .c-hero--switcher .c-hero__stage {
    gap: 0;
  }

  .c-hero--switcher .c-hero__frame .c-hero__shortcode,
  .c-hero--switcher .c-hero__frame .c-hero__media {
    display: none;
  }

  .c-hero--switcher .c-hero__frame .c-hero__shortcode:first-child,
  .c-hero--switcher .c-hero__frame .c-hero__media:first-child {
    display: block;
  }

  .c-hero--switcher .c-hero__toggles {
    display: none;
  }

  .c-hero--switcher .c-hero__trusted {
    gap: var(--uw-space-24);
    justify-content: flex-start;
    align-items: flex-start;
  }

  .c-hero--switcher .c-hero__trusted-label {
    display: none;
  }

  .c-hero--switcher .c-hero__trusted-logos {
    width: 100%;
    justify-content: flex-start;
  }
  .c-hero.is-media-none .brxe-ubkixo.l-center {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__wrap {
    gap: var(--uw-space-24);
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .u-center,
  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__intro {
    align-items: flex-start;
    text-align: left;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__intro > .brxe-heading,
  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__intro > .brxe-text-basic {
    margin: 0;
    text-align: left;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__intro > .brxe-heading + .brxe-text-basic {
    margin-top: var(--uw-space-24);
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .tag,
  .c-hero:not(.c-hero--switcher):not(.is-media-none) .tag img,
  .c-hero:not(.c-hero--switcher):not(.is-media-none) .brxe-image.tag img {
    display: block;
    width: 100%;
    border-radius: 24px;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__trusted {
    gap: var(--uw-space-24);
    align-items: flex-start;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__trusted-label {
    display: none;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__trusted-logos {
    width: 100%;
    overflow: hidden;
  }

  .c-hero:not(.c-hero--switcher):not(.is-media-none) .c-hero__trusted-logo {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    max-height: 24px;
  }

  .c-hero--whitepaper .brxe-gtexvn {
    gap: var(--uw-space-24);
  }

  .c-hero--whitepaper .brxe-gtexvn > .brxe-spzade {
    order: 1;
  }

  .c-hero--whitepaper .brxe-gtexvn > .brxe-djzvtb {
    order: 2;
  }

  .c-hero--whitepaper .brxe-spzade {
    gap: var(--uw-space-24);
  }

  .c-hero--whitepaper .brxe-istxww {
    gap: var(--uw-space-8);
  }

  .c-hero--whitepaper .brxe-tsskdh {
    gap: var(--uw-space-8);
  }

  .c-hero--whitepaper .brxe-bffegz {
    justify-content: flex-start;
  }

  .c-hero--requirements .brxe-ejzave {
    gap: var(--uw-space-24);
  }

  .c-hero--requirements .brxe-wkavqf {
    gap: var(--uw-space-24);
  }

   .c-hero--mobile-content-first .l-split {
    gap: var(--uw-space-24);
  }

  .c-hero--mobile-content-first .l-split > :first-child {
    order: 2;
  }

  .c-hero--mobile-content-first .l-split > :last-child {
    order: 1;
  }

  .c-hero--mobile-content-first .brxe-xpijfc {
    gap: var(--uw-space-8);
  }

  .c-hero--mobile-content-first .brxe-ouwhfb {
    gap: var(--uw-space-24);
  }

  .c-hero--mobile-content-first .brxe-ohgylb {
    gap: var(--uw-space-8);
    align-items: flex-start;
    text-align: left;
  }

  .c-hero--mobile-content-first .brxe-gbaput {
    gap: var(--uw-space-24);
    align-items: flex-start;
    text-align: left;
  }

  .c-hero--mobile-content-first .brxe-ripssu {
    gap: var(--uw-space-24);
  }

  .c-hero--mobile-content-first .brxe-tnwfhi {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .c-hero--mobile-content-first .brxe-mhqpld,
  .c-hero--mobile-content-first .brxe-poxqfy {
    text-align: left;
  }

  .c-hero--mobile-content-first .brxe-tnwfhi .c-btn {
    align-self: flex-start;
  }

   .c-solutions-platform .brxe-xkpmbv {
    gap: var(--uw-space-24);
  }

  .c-solutions-platform .brxe-ebjaeu,
  .c-solutions-platform .brxe-ebjaeu.u-center {
    gap: 0;
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
  }

  .c-solutions-platform .brxe-tmlhcq,
  .c-solutions-platform .brxe-vlvnbi {
    text-align: left;
    margin: 0;
  }

  .c-solutions-platform .brxe-tmlhcq + .brxe-vlvnbi {
    margin-top: var(--uw-space-8);
  }

  .c-solutions-platform .brxe-vlvnbi + .c-tabs--cards-explorer {
    margin-top: var(--uw-space-24);
  }

  .c-tabs--cards-explorer {
    display: flex;
    flex-direction: column;
    gap: var(--uw-space-24);
    width: 100%;
  }

  .c-tabs--cards-explorer .tab-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--uw-space-8);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    background: transparent;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .c-tabs--cards-explorer .tab-menu::-webkit-scrollbar {
    display: none;
  }

  .c-tabs--cards-explorer .tab-title {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 30px;
    padding: 4px 12px;
    border-radius: var(--uw-radius-pill);
    background: var(--G800);
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
  }

  .c-tabs--cards-explorer .tab-title[aria-selected="true"],
  .c-tabs--cards-explorer .tab-title.brx-open {
    background: var(--P700);
    color: var(--G800);
  }

  .c-tabs--cards-explorer .tab-title[aria-selected="false"] {
    background: var(--G800);
    color: var(--G50);
  }

  .c-tabs--cards-explorer .tab-title .brxe-text-basic {
    margin: 0;
    font-size: var(--text-s);
    line-height: 16px;
    color: inherit;
    text-align: center;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .c-tabs--cards-explorer .tab-title[aria-selected="true"] .brxe-text-basic,
  .c-tabs--cards-explorer .tab-title.brx-open .brxe-text-basic {
    font-weight: var(--uw-fw-500);
  }

  .c-tabs--cards-explorer .tab-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .c-tabs--cards-explorer .tab-pane {
    margin: 0;
    padding: 0;
  }

  .c-solutions-platform .tab-pane > section > .l-container > .l-stack,
  .c-solutions-platform .tab-pane .l-stack.l-center {
    gap: var(--uw-space-16);
    align-items: stretch;
    text-align: left;
    margin-inline: 0;
  }

  .c-solutions-platform .tab-pane .l-grid-fixed {
    grid-template-columns: 1fr;
    gap: var(--uw-space-16);
  }

  .c-solutions-platform .tab-pane .l-grid-fixed > .l-stack {
    gap: var(--uw-space-16);
  }

  .c-solutions-platform .tab-pane .u-minh-232,
  .c-solutions-platform .tab-pane .u-minh-488,
  .c-solutions-platform .tab-pane .c-card {
    min-height: 0;
    height: auto;
  }

  .c-solutions-platform .tab-pane .c-card__media,
  .c-solutions-platform .tab-pane .cs-card__media {
    display: none;
  }

  .c-solutions-platform .tab-pane .c-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    align-items: start;
    column-gap: 12px;
    padding: var(--uw-space-16);
  }

  .c-solutions-platform .tab-pane .c-card__body > .l-stack.u-left {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon desc";
    column-gap: 12px;
    row-gap: var(--uw-space-8);
    min-width: 0;
  }

  .c-solutions-platform .tab-pane .c-card__body > .l-stack.u-left > :first-child {
    grid-area: icon;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .c-solutions-platform .tab-pane .c-card__body > .l-stack.u-left > :nth-child(2) {
    grid-area: title;
    margin: 0;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
    font-weight: var(--uw-fw-600);
    color: var(--G50);
  }

  .c-solutions-platform .tab-pane .c-card__body > .l-stack.u-left > :nth-child(3) {
    grid-area: desc;
    margin: 0;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
    color: var(--G100);
  }

  .c-solutions-platform .tab-pane .c-card__body > .c-btn-link {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    padding: 0;
    margin: 0;
    align-self: flex-start;
    justify-self: end;
    color: var(--G50);
    overflow: hidden;
    font-size: 0;
    line-height: 0;
  }

  .c-solutions-platform .tab-pane .c-card__body > .c-btn-link svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .c-railway-ops-tabs .brxe-hbbnka,
  .c-railway-ops-tabs .brxe-rvmsnm {
    gap: var(--uw-space-24);
  }

  .c-railway-ops-tabs .tab-pane .l-split.align-items--start {
    display: block;
  }

  .c-railway-ops-tabs .tab-pane .l-split.align-items--start > :first-child {
    display: none;
  }

  .c-railway-ops-tabs .tab-pane .l-split.align-items--start > :last-child {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .c-railway-ops-tabs .tab-pane .l-split.align-items--start > :last-child .u-text-muted,
  .c-railway-ops-tabs .tab-pane .l-split.align-items--start > :last-child .brxe-heading,
  .c-railway-ops-tabs .tab-pane .l-split.align-items--start > :last-child .c-eyebrow {
    text-align: left;
  }

  .c-related-solutions .brxe-lcxurq {
    gap: var(--uw-space-24);
  }

  .c-related-solutions .brxe-yvrpcy {
    grid-template-columns: 1fr;
    gap: var(--uw-space-24);
  }

  .c-related-solutions .c-card {
    min-height: 0;
    height: auto;
  }

  .c-related-solutions .c-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--uw-space-24);
    min-height: 0;
    height: auto;
  }

  .c-related-solutions .brxe-ouabue {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--uw-space-8);
    min-height: 0;
  }

  .c-related-solutions .brxe-exyvto {
    margin-top: 0;
  }

  .c-success-stories-section .brxe-rntyth {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-inline: 0;
  }

  .c-success-stories-section .brxe-rntyth > * {
    align-self: flex-start;
    text-align: left;
  }

  .c-success-stories-section .brxe-fjcvpy {
    align-self: flex-start;
    justify-content: flex-start;
    margin-inline: 0;
  }
  .c-success-stories-section .brxe-rntyth > .c-btn.c-btn-text {
    align-self: flex-start;
  }

  .c-tabs--pricing-switcher .tab-pane .fx-card-highlight,
  .c-tabs--pricing-switcher .tab-pane .u-border-grad,
  .c-tabs--pricing-switcher .tab-pane .l-grid > *,
  .c-tabs--pricing-switcher .tab-pane .l-grid > .brxe-container,
  .c-tabs--pricing-switcher .tab-pane .l-grid > .brxe-block {
    height: auto;
    min-height: 0;
  }

  .c-tabs--pricing-switcher .tab-pane .l-grid {
    align-items: start;
  }

  .c-tabs--pricing-switcher .tab-pane .l-stack.v-gap-32,
  .c-tabs--pricing-switcher .tab-pane .l-stack.v-gap-24,
  .c-tabs--pricing-switcher .tab-pane .l-stack.v-gap-16,
  .c-tabs--pricing-switcher .tab-pane .l-stack.v-gap-8 {
    height: auto;
    min-height: 0;
  }

  .c-tabs--pricing-switcher + .brxe-imnkuz,
  .c-tabs--pricing-switcher + .brxe-imnkuz > .c-card__body,
  .c-tabs--pricing-switcher + .brxe-imnkuz .u-center {
    height: auto;
    min-height: 0;
  }

  body .c-network-process .brxe-diukzp {
    gap: var(--uw-space-24);
  }

  body .c-network-process .brxe-ohahra {
    gap: var(--uw-space-24);
    align-items: flex-start;
    text-align: left;
  }

  body .c-network-process .brxe-vljycd.c-network-process__carousel.brxe-container.l-stack {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body .c-network-process .brxe-vljycd.c-network-process__carousel.brxe-container.l-stack::-webkit-scrollbar {
    display: none;
  }

  body .c-network-process .c-network-process__slide.brxe-container {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--uw-space-24);
    scroll-snap-align: start;
  }

  body .c-network-process .c-network-process__slide > :first-child {
    order: 2;
  }

  body .c-network-process .c-network-process__slide > :last-child {
    order: 1;
  }

  body .c-network-process .c-network-process__slide .l-cluster {
    justify-content: flex-start;
  }

  body .c-network-process .c-network-process__slide .tag,
  body .c-network-process .c-network-process__slide .tag img,
  body .c-network-process .c-network-process__slide .brxe-image.tag img {
    display: block;
    width: 100%;
  }

  body .c-network-process .c-network-process__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--uw-space-8);
    width: 100%;
    margin-top: var(--uw-space-16);
  }

  body .c-network-process .c-network-process__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--G600);
    flex: 0 0 auto;
  }

  body .c-network-process .c-network-process__dot.is-active {
    background: var(--P700);
  }
  body .c-network-process .brxe-msdfkq > .brxe-asggfx {
    order: 1;
  }

  body .c-network-process .brxe-msdfkq > .brxe-vatpyg {
    order: 2;
  }
  
  .c-datasheets-section .brxe-ruqtvp {
    gap: var(--uw-space-24);
  }

  .c-datasheets-section .brxe-gtjipf {
    gap: var(--uw-space-8);
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
  }

  .c-datasheets-section .brxe-eutxnb,
  .c-datasheets-section .brxe-eosbiv {
    text-align: left;
  }

  .c-datasheets-section .brxe-jnuycu {
    gap: var(--uw-space-16);
  }

  .c-datasheets-section .c-ds-card__cta {
    width: 100%;
  }

  .c-datasheets-section .c-ds-card__cta .c-btn {
    width: 100%;
    justify-content: center;
  }
  
  .c-tour-demo .brxe-agjagp {
    display: flex;
    flex-direction: column;
    gap: var(--uw-space-48);
  }

  .c-tour-demo .brxe-agjagp > .brxe-blquxj {
    order: 1;
  }

  .c-tour-demo .brxe-agjagp > .brxe-obzaug {
    order: 2;
    width: 100%;
  }

  .c-tour-demo .brxe-blquxj {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: var(--uw-space-24);
  }

  .c-tour-demo .c-tour-demo__intro,
  .c-tour-demo .c-tour-demo__checklist {
    width: 100%;
  }

  .c-tour-demo .c-tour-form__logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--uw-space-8);
  }

  .c-tour-demo .c-tour-form__logos img {
    width: auto;
    height: 40px;
    flex: 0 0 auto;
    object-fit: contain;
  }
}

/* Team section desktop */
.c-team-section .c-team-card-mobile {
  display: none;
}

.c-team-section .c-team-card--desktop {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--G700);
}

.c-team-section .c-team-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 299 / 348;
  object-fit: cover;
  border-radius: 12px;
}

.c-team-section .c-team-card__meta {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 8px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--G700) 88%, transparent);
}

.c-team-section .c-team-section__dots {
  display: none;
}

@media (max-width: 767px) {
  body .c-team-section .c-team-section__intro,
  body .c-team-section .c-team-section__intro.u-center {
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
    gap: var(--uw-space-24);
  }

  body .c-team-section .c-team-section__intro > * {
    align-self: flex-start;
    text-align: left;
  }

  body .c-team-section .c-team-carousel.brxe-container.l-grid-fixed {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    grid-auto-columns: 308px;
    row-gap: 24px;
    column-gap: 16px;
    align-items: start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body .c-team-section .c-team-carousel.brxe-container.l-grid-fixed::-webkit-scrollbar {
    display: none;
  }

  body .c-team-section .c-team-person {
    width: 308px;
    min-width: 308px;
    scroll-snap-align: start;
  }

  body .c-team-section .c-team-card--desktop {
    display: none;
  }

  body .c-team-section .c-team-card-mobile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 8px;
    gap: 12px;
    width: 308px;
    background: var(--G700);
    border-radius: 12px;
  }

  body .c-team-section .c-team-card-mobile__img {
    width: 96px;
    min-width: 96px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
  }

  body .c-team-section .c-team-card-mobile__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
  }

  body .c-team-section .c-team-card-mobile__name {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--G50);
  }

  body .c-team-section .c-team-card-mobile__role {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--G100);
  }

  body .c-team-section .c-team-section__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--uw-space-8);
    width: 100%;
    margin-top: var(--uw-space-16);
  }

  body .c-team-section .c-team-section__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--G600);
    flex: 0 0 auto;
  }

  body .c-team-section .c-team-section__dot.is-active {
    background: var(--P700);
  }

  .c-certifications-section .brxe-uqdtud {
    gap: var(--uw-space-24);
  }

  .c-certifications-section .brxe-irrkuj,
  .c-certifications-section .brxe-irrkuj.u-center {
    gap: var(--uw-space-8);
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
  }

  .c-certifications-section .brxe-irrkuj > * {
    align-self: flex-start;
    text-align: left;
  }

  .c-certifications-section .brxe-qqcohk {
    grid-template-columns: 1fr;
    gap: var(--uw-space-24);
  }

  .c-certifications-section .c-cert-card {
    min-height: 0;
    height: auto;
  }

  .c-certifications-section .c-cert-card__media {
    width: 100%;
  }

  .c-certifications-section .c-cert-card__media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .c-certifications-section .c-cert-card .c-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--uw-space-24);
    min-height: 0;
    height: auto;
  }

  .c-certifications-section .c-cert-card__cta {
    align-self: flex-start;
    margin-top: 0;
  }


  .c-story .c-story__wrap,
  .c-story .brxe-hwmbrq {
    gap: var(--uw-space-24);
  }

  .c-story .c-story__header,
  .c-story .c-story__header.u-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--uw-space-8);
    text-align: left;
    margin-inline: 0;
  }

  .c-story .c-story__header > * {
    margin: 0;
    text-align: left;
    align-self: flex-start;
  }

  .c-story .c-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--uw-space-24);
    width: 100%;
    padding: 0;
  }

  .c-story .c-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 0;
    left: 8px;
    width: 1px;
    background-image: repeating-linear-gradient(
      to bottom,
      var(--G50) 0 12px,
      transparent 12px 24px
    );
    opacity: 0.5;
  }

  .c-story .c-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: var(--uw-space-8);
    row-gap: var(--uw-space-16);
    align-items: start;
  }

  .c-story .c-timeline__dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--P700);
    justify-self: center;
    align-self: start;
    z-index: 1;
  }

  .c-story .c-timeline__dot::before,
  .c-story .c-timeline__dot::after {
    display: none;
  }

  .c-story .c-timeline__year {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 0;
    text-align: left;
    justify-self: start;
    align-self: start;
  }

  .c-story .c-timeline__content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    padding: 0 0 0 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--uw-space-8);
    text-align: left;
    justify-self: start;
  }

  .c-story .c-timeline__year h3,
  .c-story .c-timeline__title,
  .c-story .c-timeline__desc {
    margin: 0;
    text-align: left;
  }

  .c-story .c-timeline__item:nth-child(odd) .c-timeline__year,
  .c-story .c-timeline__item:nth-child(even) .c-timeline__year {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    text-align: left;
    justify-self: start;
  }

  .c-story .c-timeline__item:nth-child(odd) .c-timeline__content,
  .c-story .c-timeline__item:nth-child(even) .c-timeline__content {
    grid-column: 2;
    grid-row: 2;
    padding: 0 0 0 8px;
    text-align: left;
    justify-self: start;
    align-items: flex-start;
  }

  body .c-story .brxe-container.c-timeline, body .c-story .c-timeline {
    gap: 24px;
  }

  .c-story .c-timeline__item:nth-child(even) .c-timeline__title, .c-story .c-timeline__item:nth-child(even) .c-timeline__desc {
    text-align: left;
  }

  .c-story .c-timeline__item:nth-child(even) .c-timeline__dot::after {
    display: none;
  }

  body .c-story .brxe-container.c-timeline, body .c-story .c-timeline {
    padding-top: 0;
  }


  /* =========================================================
   NEWSLETTER MOBILE
========================================================= */

  body .c-newsletter-form-card,
  body .c-newsletter-form-card.u-center {
    max-width: 100%;
    padding: var(--uw-space-16);
  }

  .c-newsletter-popup {
    width: calc(100vw - (var(--uw-space-16) * 2));
    padding: var(--uw-space-16);
  }

  body .c-newsletter-form .ff-el-group {
    margin-bottom: var(--uw-space-24);
  }

  body .c-newsletter-form .ff-newsletter-form__salutation > .ff-el-input--content {
    gap: var(--uw-space-24);
  }

  body .c-newsletter-form .ff-newsletter-form__salutation .ff-el-form-check-label,
  body .c-newsletter-form .ff-newsletter-form__salutation .ff-el-form-check label,
  body .c-newsletter-form .ff-newsletter-form__consent .ff-el-form-check-label,
  body .c-newsletter-form .ff-newsletter-form__consent .ff-el-form-check label,
  body .c-newsletter-form .ff-el-group:has(input[type="checkbox"]) .ff-el-form-check-label,
  body .c-newsletter-form .ff-el-group:has(input[type="checkbox"]) .ff-el-form-check label {
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
  }

  body .c-newsletter-form .ff_submit_btn_wrapper .ff-btn.ff-btn-submit,
  body .c-newsletter-form .ff_submit_btn_wrapper button[type="submit"] {
    min-width: 148px;
    height: 48px;
    font-size: var(--text-s);
    line-height: var(--text-s-line-height);
  }
}

