/* Support page: tasks block */
.support-tasks {
  --support-task-x: 0px;
  position: relative;
  background: #fff;
  color: #28207f;
  overflow: visible;
}

.support-tasks__sticky {
  position: relative;
  background: #fff;
}

.support-tasks__container {
  width: min(1836px, calc(100% - 94px));
  margin: 0 auto;
  padding: clamp(90px, 7vw, 132px) 0 clamp(70px, 5vw, 96px);
}

.support-tasks__head {
  margin-bottom: clamp(56px, 5vw, 86px);
}

.support-tasks__head h2 {
  margin: 0;
  color: #28207f;
  font-size: clamp(70px, 5.6vw, 112px);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 400;
}

.support-tasks__head h2 span,
.support-tasks__head h2 em {
  display: block;
  font: inherit;
}

.support-tasks__head h2 em {
  padding-left: clamp(310px, 19vw, 410px);
  color: #bdc9ee;
  font-style: normal;
}

.support-tasks__viewport {
  overflow: visible;
}

.support-tasks__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: clamp(22px, 1.7vw, 32px);
  width: 100%;
}

.support-tasks__card {
  min-height: clamp(360px, 22.5vw, 420px);
  padding: clamp(28px, 2vw, 38px);
  background: #e7edfb;
  color: #28207f;
  border: 0;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition:
    background-color .28s ease,
    color .28s ease,
    transform .28s ease,
    opacity .28s ease;
}

.support-tasks__card.is-active {
  background: #638cff;
  color: #fff;
}

.support-tasks__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: currentColor;
  opacity: .55;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1;
  font-weight: 800;
}

.support-tasks__card.is-active .support-tasks__card-top {
  opacity: 1;
}

.support-tasks__card-top i {
  font-style: normal;
  font-size: clamp(24px, 1.35vw, 28px);
  font-weight: 300;
}

.support-tasks__card h3 {
  margin: 0;
  color: currentColor;
  font-size: clamp(30px, 2vw, 43px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 400;
}

.support-tasks__text {
  width: min(760px, 100%);
  margin-top: clamp(48px, 3.8vw, 70px);
  color: #28207f;
}

.support-tasks__text p {
  margin: 0;
  font-size: clamp(21px, 1.25vw, 26px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 400;
}

.support-tasks__text p + p {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .support-tasks__track {
    grid-template-columns: repeat(4, minmax(290px, 1fr));
  }

  .support-tasks__viewport {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .support-tasks__card {
    scroll-snap-align: start;
  }
}

/* Mobile pinned horizontal */
@media (max-width: 760px) {
  .support-tasks {
    height: var(--support-tasks-mobile-height, 230vh);
    overflow: visible;
    max-width: 100vw;
  }

  .support-tasks__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
    background: #fff;
  }

  .support-tasks__container {
    width: 100vw;
    max-width: 100vw;
    height: 100svh;
    padding: 34px 0 0;
    margin: 0;
    overflow: hidden;
  }

  .support-tasks__head {
    width: calc(100vw - 30px);
    margin: 0 auto 44px;
  }

  .support-tasks__head h2 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: .9;
    letter-spacing: -.07em;
  }

  .support-tasks__head h2 em {
    padding-left: 0;
    max-width: 420px;
    margin-left: auto;
    text-align: center;
  }

  .support-tasks__viewport {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
  }

  .support-tasks__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    padding: 0 15px;
    transform: translate3d(var(--support-task-x, 0px), 0, 0);
    will-change: transform;
  }

  .support-tasks__card {
    flex: 0 0 calc(100vw - 110px);
    width: calc(100vw - 110px);
    min-width: 310px;
    max-width: 360px;
    min-height: 300px;
    padding: 28px 26px;
    opacity: .42;
    background: #e7edfb;
    color: #28207f;
  }

  .support-tasks__card.is-active {
    opacity: 1;
    background: #638cff;
    color: #fff;
  }

  .support-tasks__card h3 {
    font-size: clamp(39px, 10.7vw, 52px);
    line-height: .96;
  }

  .support-tasks__card-top {
    font-size: 20px;
  }

  .support-tasks__text {
    width: calc(100vw - 30px);
    margin: 36px auto 0;
  }

  .support-tasks__text p {
    font-size: clamp(21px, 5.8vw, 27px);
    line-height: 1.06;
  }

  .support-tasks__text p br {
    display: none;
  }

  .support-tasks__text p + p {
    margin-top: 24px;
  }
}

@media (max-width: 430px) {
  .support-tasks__container {
    padding-top: 30px;
  }

  .support-tasks__head {
    margin-bottom: 38px;
  }

  .support-tasks__card {
    flex-basis: calc(100vw - 110px);
    min-height: 300px;
  }
}


/* Support tasks visual alignment PATCH */
@media (min-width: 1181px) {
  .support-tasks {
    background: #fff !important;
    color: #28207f !important;
    overflow: hidden !important;
  }

  .support-tasks__sticky {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    background: #fff !important;
  }

  .support-tasks__container {
    width: min(1836px, calc(100% - 94px)) !important;
    margin: 0 auto !important;
    padding: 68px 0 72px !important;
  }

  .support-tasks__head {
    margin: 0 0 58px !important;
  }

  .support-tasks__head h2 {
    margin: 0 !important;
    color: #28207f !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(76px, 5.2vw, 106px) !important;
    line-height: .86 !important;
    letter-spacing: -.07em !important;
    font-weight: 400 !important;
  }

  .support-tasks__head h2 span,
  .support-tasks__head h2 em {
    display: block !important;
    font: inherit !important;
  }

  .support-tasks__head h2 span {
    color: #28207f !important;
  }

  .support-tasks__head h2 em {
    margin-top: 4px !important;
    padding-left: clamp(310px, 18.8vw, 390px) !important;
    color: #bdc9ee !important;
    font-style: normal !important;
    white-space: nowrap !important;
  }

  /* Главное: группа карточек не на весь экран, а сдвинута вправо */
  .support-tasks__viewport {
    width: min(1518px, calc(100% - 306px)) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    display: block !important;
  }

  .support-tasks__track {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }

  .support-tasks__card {
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    min-height: 360px !important;
    height: 360px !important;
    padding: 30px 30px 30px !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #e7edfb !important;
    color: #28207f !important;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    transition:
      background-color .22s ease,
      color .22s ease,
      transform .22s ease !important;
  }

  .support-tasks__card.is-active {
    background: #638cff !important;
    color: #fff !important;
  }

  .support-tasks__card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    opacity: 1 !important;
    color: currentColor !important;
    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

  .support-tasks__card:not(.is-active) .support-tasks__card-top {
    color: #bdc9ee !important;
  }

  .support-tasks__card-top i {
    font-size: 29px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 300 !important;
  }

  .support-tasks__card h3 {
    margin: 0 !important;
    color: currentColor !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(31px, 1.95vw, 38px) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
    font-weight: 400 !important;
  }

  .support-tasks__text {
    width: min(760px, calc(100% - 306px)) !important;
    max-width: 760px !important;
    margin-top: 52px !important;
    margin-left: auto !important;
    margin-right: calc(min(1518px, calc(100% - 306px)) - min(1518px, calc(100% - 306px))) !important;
    transform: translateX(calc((100% - min(1518px, calc(100% - 306px))) * -1 + 0px)) !important;
    color: #28207f !important;
  }

  /*
    Текст должен начинаться под первой карточкой.
    Этот блок возвращает его к левому краю viewport-карточек.
  */
  .support-tasks__viewport + .support-tasks__text,
  .support-tasks__text {
    margin-left: calc(100% - min(1518px, calc(100% - 306px))) !important;
    transform: none !important;
  }

  .support-tasks__text p {
    margin: 0 !important;
    color: #28207f !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 21px !important;
    line-height: 1.05 !important;
    letter-spacing: -.04em !important;
    font-weight: 400 !important;
  }

  .support-tasks__text p + p {
    margin-top: 14px !important;
  }
}


/* Support tasks text exact left alignment */
@media (min-width: 1181px) {
  .support-tasks__text {
    width: min(760px, calc(100% - 306px)) !important;
    margin-left: calc(100% - min(1518px, calc(100% - 306px))) !important;
    margin-right: auto !important;
    transform: none !important;
  }
}


/* Support tasks square cards and smaller description PATCH */
@media (min-width: 1181px) {
  .support-tasks__card {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 30px 30px 28px !important;
  }

  .support-tasks__card h3 {
    font-size: clamp(29px, 1.8vw, 35px) !important;
    line-height: 1 !important;
  }

  .support-tasks__text {
    margin-top: 44px !important;
    max-width: 690px !important;
  }

  .support-tasks__text p {
    font-size: 17px !important;
    line-height: 1.12 !important;
    letter-spacing: -.025em !important;
  }

  .support-tasks__text p + p {
    margin-top: 10px !important;
  }
}

@media (max-width: 760px) {
  .support-tasks__card {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .support-tasks__text p {
    font-size: 17px !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 430px) {
  .support-tasks__text p {
    font-size: 16px !important;
  }
}


/* Support tasks: smaller card text + full mobile description PATCH */
@media (min-width: 1181px) {
  .support-tasks__card h3 {
    font-size: clamp(26px, 1.62vw, 31px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.05em !important;
  }

  .support-tasks__text {
    margin-top: 36px !important;
    max-width: 650px !important;
  }

  .support-tasks__text p {
    font-size: 15.5px !important;
    line-height: 1.16 !important;
    letter-spacing: -.018em !important;
  }

  .support-tasks__text p + p {
    margin-top: 9px !important;
  }
}

@media (max-width: 760px) {
  .support-tasks__sticky {
    height: 100dvh !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .support-tasks__container {
    height: 100dvh !important;
    min-height: 0 !important;
    padding-top: 22px !important;
    padding-bottom: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .support-tasks__head {
    flex: 0 0 auto !important;
    margin-bottom: 22px !important;
  }

  .support-tasks__head h2 {
    font-size: clamp(34px, 10.2vw, 44px) !important;
    line-height: .9 !important;
  }

  .support-tasks__head h2 em {
    font-size: clamp(34px, 10.2vw, 44px) !important;
    line-height: .96 !important;
  }

  .support-tasks__viewport {
    flex: 0 0 auto !important;
  }

  .support-tasks__card {
    flex-basis: calc(100vw - 118px) !important;
    width: calc(100vw - 118px) !important;
    min-width: 0 !important;
    max-width: 330px !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 20px 20px 22px !important;
  }

  .support-tasks__card h3 {
    font-size: clamp(27px, 7.4vw, 34px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.052em !important;
  }

  .support-tasks__card-top {
    font-size: 17px !important;
  }

  .support-tasks__card-top i {
    font-size: 23px !important;
  }

  .support-tasks__text {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: calc(100vw - 30px) !important;
    margin: 22px auto 0 !important;
    overflow: visible !important;
  }

  .support-tasks__text p {
    font-size: clamp(15px, 4.05vw, 17px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.022em !important;
    margin: 0 !important;
  }

  .support-tasks__text p + p {
    margin-top: 14px !important;
  }

  .support-tasks__text p br {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .support-tasks__container {
    padding-top: 18px !important;
    padding-bottom: 12px !important;
  }

  .support-tasks__head {
    margin-bottom: 18px !important;
  }

  .support-tasks__head h2,
  .support-tasks__head h2 em {
    font-size: clamp(32px, 9.8vw, 40px) !important;
  }

  .support-tasks__card {
    flex-basis: calc(100vw - 116px) !important;
    width: calc(100vw - 116px) !important;
    padding: 18px 18px 20px !important;
  }

  .support-tasks__card h3 {
    font-size: clamp(25px, 7vw, 31px) !important;
  }

  .support-tasks__text {
    margin-top: 18px !important;
  }

  .support-tasks__text p {
    font-size: 14.5px !important;
    line-height: 1.11 !important;
  }

  .support-tasks__text p + p {
    margin-top: 12px !important;
  }
}

@media (max-height: 740px) and (max-width: 760px) {
  .support-tasks__container {
    padding-top: 14px !important;
  }

  .support-tasks__head {
    margin-bottom: 14px !important;
  }

  .support-tasks__head h2,
  .support-tasks__head h2 em {
    font-size: clamp(29px, 8.8vw, 36px) !important;
  }

  .support-tasks__card {
    flex-basis: calc(100vw - 132px) !important;
    width: calc(100vw - 132px) !important;
    padding: 16px 16px 18px !important;
  }

  .support-tasks__card h3 {
    font-size: clamp(22px, 6.4vw, 28px) !important;
  }

  .support-tasks__text {
    margin-top: 14px !important;
  }

  .support-tasks__text p {
    font-size: 13.5px !important;
    line-height: 1.1 !important;
  }

  .support-tasks__text p + p {
    margin-top: 10px !important;
  }
}


/* Support tasks: restore card font + increase squares by ~10% */
@media (min-width: 1181px) {
  .support-tasks {
    --support-task-group-width: min(1670px, calc(100% - 210px));
  }

  .support-tasks__viewport {
    width: var(--support-task-group-width) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .support-tasks__track {
    gap: 24px !important;
  }

  .support-tasks__card {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 30px 30px 28px !important;
  }

  /* Возвращаем шрифт текста внутри карточек */
  .support-tasks__card h3 {
    font-size: clamp(29px, 1.8vw, 35px) !important;
    line-height: 1 !important;
    letter-spacing: -.055em !important;
  }

  /* Текст под карточками оставляем уменьшенным, но выравниваем под первой карточкой */
  .support-tasks__text {
    width: min(690px, var(--support-task-group-width)) !important;
    max-width: 690px !important;
    margin-left: calc(100% - var(--support-task-group-width)) !important;
    margin-right: auto !important;
    margin-top: 36px !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  /* Квадраты примерно на 10% больше */
  .support-tasks__card {
    flex-basis: calc(100vw - 92px) !important;
    width: calc(100vw - 92px) !important;
    max-width: 370px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Возвращаем шрифт внутри мобильных карточек */
  .support-tasks__card h3 {
    font-size: clamp(30px, 8.4vw, 39px) !important;
    line-height: 1.01 !important;
    letter-spacing: -.055em !important;
  }

  .support-tasks__card-top {
    font-size: 18px !important;
  }

  .support-tasks__card-top i {
    font-size: 24px !important;
  }
}

@media (max-width: 430px) {
  .support-tasks__card {
    flex-basis: calc(100vw - 88px) !important;
    width: calc(100vw - 88px) !important;
    max-width: 360px !important;
  }

  .support-tasks__card h3 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }
}

@media (max-height: 740px) and (max-width: 760px) {
  .support-tasks__card {
    flex-basis: calc(100vw - 104px) !important;
    width: calc(100vw - 104px) !important;
    max-width: 340px !important;
  }

  .support-tasks__card h3 {
    font-size: clamp(25px, 7.2vw, 32px) !important;
  }
}


/* Support tasks mobile sticky timing FIX */
@media (max-width: 760px) {
  .support-tasks {
    --support-tasks-sticky-top: 0px;
  }

  .support-tasks__sticky {
    top: var(--support-tasks-sticky-top) !important;
    height: calc(100dvh - var(--support-tasks-sticky-top)) !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .support-tasks__container {
    height: calc(100dvh - var(--support-tasks-sticky-top)) !important;
    min-height: 0 !important;
  }
}


/* Support tasks mobile edge spacing FIX */
@media (max-width: 760px) {
  .support-tasks__track {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 430px) {
  .support-tasks__track {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}


/* Support tasks mobile jitter FIX */
@media (max-width: 760px) {
  .support-tasks,
  .support-tasks__sticky,
  .support-tasks__container,
  .support-tasks__viewport {
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .support-tasks__track {
    transform: translate3d(var(--support-task-x, 0px), 0, 0) !important;
    transition: none !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .support-tasks__card {
    transform: translate3d(0, 0, 0) !important;
    transition:
      background-color .16s ease,
      color .16s ease,
      opacity .16s ease !important;
    will-change: opacity, background-color, color !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .support-tasks__card.is-active {
    transform: translate3d(0, 0, 0) !important;
  }
}


/* Support tasks mobile left/right inset final FIX */
@media (max-width: 760px) {
  .support-tasks {
    --support-tasks-mobile-inset: 24px;
  }

  .support-tasks__viewport {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .support-tasks__track {
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: translate3d(
      calc(var(--support-task-x, 0px) + var(--support-tasks-mobile-inset)),
      0,
      0
    ) !important;
  }
}

@media (max-width: 430px) {
  .support-tasks {
    --support-tasks-mobile-inset: 22px;
  }
}


/* Support tasks mobile real left inset HARD FIX */
@media (max-width: 760px) {
  .support-tasks {
    --support-tasks-mobile-inset: 28px;
  }

  .support-tasks__viewport {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .support-tasks__track {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: var(--support-tasks-mobile-inset) !important;
    margin-right: var(--support-tasks-mobile-inset) !important;
    transform: translate3d(var(--support-task-x, 0px), 0, 0) !important;
  }
}

@media (max-width: 430px) {
  .support-tasks {
    --support-tasks-mobile-inset: 26px;
  }
}


/* Support page: AI bot types pinned block */
.support-types {
  --support-types-height: 360vh;
  --support-types-blue: #638cff;
  position: relative;
  height: var(--support-types-height);
  background: #fff;
  color: #fff;
}

.support-types__sticky {
  position: sticky;
  top: var(--support-types-sticky-top, 0px);
  height: calc(100dvh - var(--support-types-sticky-top, 0px));
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #fff;
}

.support-types__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f3f7ff;
}

.support-types__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-types__panel {
  position: relative;
  min-width: 0;
  background: var(--support-types-blue);
  padding: clamp(48px, 4vw, 72px) clamp(48px, 5vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-types__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.support-types__slides {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  align-items: end;
  padding-bottom: clamp(70px, 7vw, 112px);
}

.support-types__slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition:
    opacity .38s ease,
    transform .38s ease;
}

.support-types__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.support-types__slide h2 {
  margin: 0;
  max-width: 850px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(44px, 3.1vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 400;
}

.support-types__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
}

.support-types__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-types__nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: clamp(28px, 1.8vw, 36px);
  line-height: 1;
  font-weight: 300;
}

.support-types__up {
  justify-self: center;
  color: #fff;
  font-size: clamp(28px, 1.8vw, 36px);
  line-height: 1;
  font-weight: 300;
}

.support-types__counter {
  justify-self: end;
  color: #fff;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
  .support-types {
    height: var(--support-types-height);
  }

  .support-types__sticky {
    height: calc(100dvh - var(--support-types-sticky-top, 0px));
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .support-types__media {
    flex: 0 0 42%;
    width: 100%;
  }

  .support-types__panel {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 18px 15px 16px;
  }

  .support-types__top {
    font-size: 16px;
  }

  .support-types__slides {
    padding-bottom: 34px;
  }

  .support-types__slide h2 {
    max-width: 420px;
    font-size: clamp(29px, 7.9vw, 36px);
    line-height: 1.02;
    letter-spacing: -.05em;
  }

  .support-types__bottom {
    gap: 14px;
  }

  .support-types__nav {
    gap: 14px;
  }

  .support-types__nav button,
  .support-types__up {
    font-size: 30px;
  }

  .support-types__counter {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .support-types__media {
    flex-basis: 41%;
  }

  .support-types__panel {
    padding: 16px 15px 14px;
  }

  .support-types__slide h2 {
    font-size: clamp(27px, 7.4vw, 33px);
  }
}


/* Support types visual height compact FIX */
.support-types__sticky {
  min-height: 0 !important;
  height: calc(100svh - var(--support-types-sticky-top, 0px)) !important;
}

@media (min-width: 761px) {
  .support-types__panel {
    padding: clamp(34px, 3vw, 54px) clamp(42px, 4.4vw, 78px) !important;
  }

  .support-types__slides {
    padding-bottom: clamp(46px, 5vw, 76px) !important;
  }

  .support-types__slide h2 {
    font-size: clamp(36px, 2.55vw, 52px) !important;
    line-height: 1 !important;
    max-width: 760px !important;
  }

  .support-types__top {
    font-size: clamp(14px, .9vw, 17px) !important;
  }

  .support-types__nav button,
  .support-types__up {
    font-size: clamp(24px, 1.5vw, 30px) !important;
  }

  .support-types__counter {
    font-size: clamp(14px, .9vw, 17px) !important;
  }
}

@media (max-width: 760px) {
  .support-types__media {
    flex: 0 0 37% !important;
  }

  .support-types__panel {
    padding: 14px 15px 12px !important;
  }

  .support-types__top {
    font-size: 14px !important;
  }

  .support-types__slides {
    padding-bottom: 24px !important;
  }

  .support-types__slide h2 {
    font-size: clamp(24px, 6.7vw, 30px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.045em !important;
    max-width: 390px !important;
  }

  .support-types__nav button,
  .support-types__up {
    font-size: 26px !important;
  }

  .support-types__counter {
    font-size: 13px !important;
  }

  .support-types__bottom {
    gap: 10px !important;
  }
}

@media (max-width: 430px) {
  .support-types__media {
    flex-basis: 36% !important;
  }

  .support-types__panel {
    padding-top: 12px !important;
    padding-bottom: 10px !important;
  }

  .support-types__slide h2 {
    font-size: clamp(23px, 6.3vw, 28px) !important;
  }
}

@media (max-height: 740px) and (max-width: 760px) {
  .support-types__media {
    flex-basis: 34% !important;
  }

  .support-types__top {
    font-size: 13px !important;
  }

  .support-types__slides {
    padding-bottom: 18px !important;
  }

  .support-types__slide h2 {
    font-size: clamp(21px, 5.8vw, 26px) !important;
    line-height: 1.03 !important;
  }

  .support-types__nav button,
  .support-types__up {
    font-size: 24px !important;
  }
}


/* Support types description font increase PATCH */
@media (min-width: 761px) {
  .support-types__slide h2 {
    font-size: clamp(44px, 3.1vw, 62px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.055em !important;
    max-width: 860px !important;
  }
}

@media (max-width: 760px) {
  .support-types__slide h2 {
    font-size: clamp(30px, 8.2vw, 38px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.052em !important;
    max-width: 430px !important;
  }
}

@media (max-width: 430px) {
  .support-types__slide h2 {
    font-size: clamp(28px, 7.6vw, 34px) !important;
    line-height: 1.04 !important;
  }
}

@media (max-height: 740px) and (max-width: 760px) {
  .support-types__slide h2 {
    font-size: clamp(25px, 6.8vw, 31px) !important;
    line-height: 1.04 !important;
  }
}


/* Support types: remove center up arrow layout FIX */
.support-types__up {
  display: none !important;
}

.support-types__bottom {
  grid-template-columns: 1fr auto !important;
  align-items: end !important;
}

.support-types__nav {
  justify-self: start !important;
}

.support-types__counter {
  justify-self: end !important;
}
