@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
:root {
  --container-width: 82rem;
  --default-color: #000000;
  --accent-color: #f47721;
  --secondary: #899aad;
  --accent-link: #0085eb;
  --bg-light: rgba(0, 0, 0, 0.03);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 1.111vw;
  font-family: "Onest", sans-serif;
  color: var(--default-color);
  scroll-behavior: smooth;
  font-weight: 400;
}

body {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
  color: var(--default-color);
  /* overflow: hidden; */
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}
h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}
h2 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}
h3 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
p {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}
button,
a {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  font-weight: 600;
  text-align: inherit;
  padding: 0;
  border-radius: 0.75rem;
}
input,
textarea {
  -webkit-animation: bugfix infinite 1s;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
}
textarea {
  resize: none;
}
ul {
  list-style: none;
}
button,
input,
a,
textarea {
  outline: none;
  cursor: pointer;
  font: inherit;
}

button:focus,
input:focus,
a:focus,
textarea:focus {
  outline: none;
}

button:active,
input:active,
a:active,
textarea:active {
  outline: none;
}

@media (max-width: 48em) {
  html {
    font-size: calc(1rem);
    font-size: 4.2vw; /* 16 */
    -webkit-text-size-adjust: none;
  }
  .container {
    width: 100%;
  }
  section {
    padding: 0 1rem;
  }
  h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
  }
  h2 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1;
  }
  h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
  }
  h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
  }
  p {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 16px;
    font-size: 1vw;
  }
}

.header {
  font-size: 0.77rem;
}
.footer {
  font-size: 0.875rem;
}
.footer p {
  font-size: 0.875rem;
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background: #fff;
  padding: 0.75rem 0;
  transition: background 0.3s ease;
}
.header__icons {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}

.header__search-container {
  position: relative;
  display: flex;
  align-items: center;
}
.search-overlay {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 37.5rem;
  z-index: 10;
}
.search-bar__close img {
  width: 1.25rem;
  height: 1.25rem;
}
.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.813rem 1.125rem;
  height: 2.875rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 2.313rem;
}
.search-bar__sect {
  display: flex;
  gap: 1.125rem;
  width: 93%;
}
.search-bar__input {
  background: transparent;
  font-size: 0.875rem;
  width: 93%;
}
.search-bar__input::placeholder {
  color: var(--secondary);
}
.js-search-container.has-results .search-bar {
  border-bottom: 1px solid #f2f4f7;
}
.search-results {
  display: none;

  padding: 2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2.5rem;
  margin-top: 0.75rem;
}
.search-results__block {
  max-height: 37.5rem;
  overflow-y: auto;
}
.js-search-container.has-results .search-results {
  display: block;
}
.search-result-item {
  display: flex;
  gap: 1.188rem;
  text-decoration: none;
  align-items: flex-start;
  /*width: 18.5rem;*/
  margin-bottom: 1.5rem;
}
.search-result-item:last-child {
  margin-bottom: 0;
}
.search-result-item:hover .search-result-item__title,
.search-result-item:hover .search-result-item__title::after {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.search-result-item__img {
  width: 3rem;
  height: 3rem;
  border-radius: 2.5rem;
  background: #f8f9fb;
  overflow: hidden;
}
.search-result-item__img img {
  width: 3rem;
  height: 3rem;
}
.search-result-item__info {
  /*width: 14.313rem;*/
  width: max-content;
}
.search-result-item__title {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: 0.2s;
}
.search-result-item__title::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1.5px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.4);
  transform: rotate(-45deg);
  margin-left: 0.2rem;
  margin-top: -0.2rem;
  vertical-align: middle;
}
.search-result-item__desc {
  color: #949ca5;
  font-size: 0.875rem;
  line-height: 1.4;
}
.js-search-container.is-active .search-overlay {
  display: block !important;
}
.header__secondary-nav.search-opened,
.has-dropdown__variant.search-opened,
.has-dropdown__phone.search-opened {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header__icon-btn.js-search-open.search-opened {
  opacity: 0;
  visibility: hidden;
}
.header__search-container {
  transition: all 0.3s ease;
}
.search-bar__icon {
  width: 1.25rem;
  height: 1.25rem;
}
.header__mobile-menu {
  display: flex;
}
.header__mobile-menu_nuvs {
  display: flex;
  gap: 3.5rem;
}
.search-results__link {
  display: none;
}
@media (max-width: 48em) {
  .js-search-container.has-results .search-bar {
    border: none;
  }
  .search-results {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    z-index: 1001;
  }
  .js-search-container.has-results .search-results {
    display: block !important;
  }
  .header__burger.search-opened {
    opacity: 0;
    visibility: hidden;
  }
  .header-search-active .header__logo,
  .header-search-active .header__burger {
    display: none !important;
  }
  .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 4rem;
    background: #fff;
    z-index: 999;
    padding: 0 1rem;
    display: none;
  }
  .js-search-container.is-active .search-overlay {
    display: block !important;
  }
  .search-bar {
    display: flex;
    background: transparent;
    padding: 0.25rem 0;
    height: auto;
    justify-content: flex-start;
    gap: 1.25rem;
    border-radius: 0;
  }
  .search-bar__close {
    order: -1;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
  }
  .search-bar__close img {
    filter: brightness(0);
  }
  .search-bar__sect {
    order: 1;
    background: #f1f2f4;
    border-radius: 2rem;
    padding: 0.625rem 1rem;
    width: 16.95rem;
    gap: 1.125rem;
  }
  .search-bar__input {
    font-size: 1rem;
    width: 100%;
  }
  .search-results {
    position: fixed;
    top: 3.5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 3.5rem);
    background: #fff;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 1.5rem;
    overflow-y: hidden;
  }
  .search-result-item {
    width: 100%;
    margin-bottom: 1.5rem;
    height: 3.875rem;
    gap: 0.75rem;
  }
  .search-result-item__info {
    width: 17.563rem;
  }
  .search-result-item__title {
    font-size: 0.625rem;
  }
  .search-result-item__desc {
    font-size: 0.425rem;
  }
  .search-result-item__img {
    width: 2.125rem;
    height: 2.125rem;
  }
  .search-results__block {
    /* min-height: 30.75rem; */
    overflow-y: auto;
    height: 100%;
    max-height: 32.5rem;
  }
  .search-results__link {
    content: "Все результаты";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2.5rem;
    background: #f36e21;
    color: #fff;
    border-radius: 6.25rem;
    font-weight: 600;
    margin-top: 1rem;
  }
  .header__icon-btn[aria-label="Личный кабинет"] {
    position: relative;
    z-index: 1000;
  }
  .search-result-item__img img {
    width: 2.125rem;
    height: 2.125rem;
  }
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.header__icon-btn {
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__icon-btn img {
  width: 1.25rem;
  height: 1.25rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu li {
  padding-left: 0.75rem;
  padding-right: 0.6rem;
}
.header__secondary-nav {
  display: flex;
  align-items: center;
}
.header__actions {
  display: flex;
  align-items: center;
}
.header__secondary-nav a {
  padding-left: 0.75rem;
  padding-right: 0.6rem;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.58rem;
  left: 0;
  background: #fff;
  box-shadow: 0px 14px 34px 0px #0000001c;
  border: 1px solid var(--Stroke-Default, #00000026);
  padding: 1.5rem;
  min-width: 13.625rem;
  z-index: 5;
  border-radius: 1.5rem;
}
.has-dropdown__phone .dropdown-menu {
  min-width: 16.375rem;
  left: 1.5rem;
}
.dropdown-section__phone {
  margin-bottom: 1rem;
}
.dropdown-section__phone:last-child {
  margin-bottom: 0;
}
.dropdown-label__phone {
  margin: 0 0 0.25rem 0;
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.4;
}
.dropdown-link__phone {
  text-decoration: none;
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
}

.dropdown-link__phone:hover {
  color: #007bff;
}
.dropdown-text__phone {
  font-style: normal;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}
.has-dropdown__variant .dropdown-menu {
  min-width: 4rem;
  left: 1rem;
}
.dropdown-section__variant {
  margin-bottom: 1rem;
}
.dropdown-section__variant:last-child {
  margin-bottom: 0;
}
.dropdown-menu a {
  margin: 0 0 1rem 0;
  padding: 0;
}
.dropdown-menu a:last-child {
  margin: 0;
}
.has-dropdown.active .dropdown-menu {
  display: block;
}
.has-dropdown .dropdown-menu a:hover {
  color: var(--accent-color);
}
.has-dropdown .dropdown-menu a:hover .arrow {
  transform: rotate(-135deg);
  border-color: var(--accent-color);
}
.header__phone {
  padding-left: 0.75rem;
  padding-right: 0.6rem;
  margin-left: 1.575rem;
}
.header__logo {
  width: 10.5rem;
  height: 1.813rem;
  margin-right: 2rem;
}
.header__logo img {
  width: 10.5rem;
  height: 1.813rem;
}
.variant {
  padding-left: 0.75rem;
  padding-right: 0.6rem;
  margin-left: 1.075rem;
}
.header__secondary-nav a,
.header__mobile-menu_nuvs .js-dropdown-trigger,
.header__menu a,
.header__phone,
.variant {
  position: relative;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.header__secondary-nav .js-dropdown-trigger {
  padding-left: 0.75rem;
  padding-right: 0.6rem;
}

@media (max-width: 48em) {
  .header {
    padding: 0.25rem 0.875rem 0.25rem 0.688rem;
  }
  .header__icon-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.js-dropdown-trigger {
  cursor: pointer;
}
.js-dropdown-trigger .arrow {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid #aab7c6;
  border-bottom: 2px solid #aab7c6;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  border-radius: 0.04rem;
  margin-bottom: 0.2rem;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  /* box-shadow: 0px 14px 34px 0px #0000001C; */
  /* padding: 2rem; */
  z-index: 4;
}
.mega-menu .container {
  max-width: 87.5rem;
}
.header__secondary-nav,
.has-dropdown__abouts,
.has-dropdown__clients,
.has-dropdown__phone,
.has-dropdown__variant {
  position: relative;
}
/* .has-dropdown {
  position: relative;
} */
.has-dropdown.active .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.has-dropdown.active .js-dropdown-trigger {
  color: #aab7c6;
}
.has-dropdown.active .js-dropdown-trigger .arrow {
  transform: rotate(-135deg);
  margin-bottom: 0;
}
.has-dropdown .dropdown-menu .arrow {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid #aab7c6;
  border-bottom: 2px solid #aab7c6;
  transform: rotate(315deg);
  transition: transform 0.3s ease;
  border-radius: 0.04rem;
  margin-bottom: 0.2rem;
}
.mega-menu__wrapper {
  display: grid;
  grid-template-columns: 1fr 19rem;
  gap: 2rem;
  background: #ffffff;
  border: 1px solid #00000026;
  border-radius: 2.5rem;
  padding: 2.5rem;
  box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.11);
  overflow-y: auto;
  height: 32.5rem;
  scrollbar-width: none;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  row-gap: 2rem;
}
.mega-menu__section {
  margin-bottom: 2.5rem;
}
.menu-item {
  display: flex;
  gap: 1.188rem !important;
  align-items: flex-start !important;
  text-decoration: none;
  transition: color 0.2s;
}
.menu-item__title {
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: 0.2s;
}
.menu-item p {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 500;
  margin: 0.25rem 0 0;
}
.menu-item div {
  min-height: 5.0rem;
}
/* Синий баннер справа */
.promo-banner {
  background: linear-gradient(180deg, #0060fd 0%, rgba(0, 96, 253, 0) 100%);
  border-radius: 2rem;
  padding: 2rem;
  color: #fff;
  height: 26.625rem;
  width: 100%;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.promo-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  transform: rotate(0deg);
}
.promo-banner h3 {
  position: relative;
  z-index: 1;
}
.promo-banner_2 {
  background: #0085eb;
}
/*.promo-banner_2::after {
  content: "";
  position: absolute;
  bottom: -22rem;
  right: 0;
  width: 200%;
  height: 200%;
  background: url(/local/templates/redesign_2026_ru/assets/img/header/promo-2_resize.png) no-repeat center / contain;
  transform: rotate(46deg);
  background-size: 110%;
  background-position-y: 21%;
  background-position-x: -208%;
}
.promo-banner_3 {
  background: #f7f7f7;
}
.promo-banner_3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: 0;
  width: 130%;
  height: 100%;
  background: url(/local/templates/redesign_2026_ru/assets/img/header/promo-3_resize.png) no-repeat center / contain;
  transform: rotate(-90deg);
  background-size: 115%;
  background-position-y: 90%;
  background-position-x: 248%;
}
.promo-banner_3 h3 {
  color: var(--default-color);
}*/

.mega-menu__section h3 {
  font-size: 1.625rem;
  color: #000;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.menu-item img {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 2.5rem;
}
.arrow-small {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid #aab7c6;
  border-top: 1.5px solid #aab7c6;
  transform: rotate(45deg);
  margin-left: 5px;
  opacity: 1;
  transition: transform 0.2s;
  margin-top: 0.35rem;
}
.menu-item:hover .menu-item__title {
  color: var(--accent-color);
}
.menu-item:hover .arrow-small {
  border-right: 1.5px solid var(--accent-color);
  border-top: 1.5px solid var(--accent-color);
}
.header__burger {
  display: none;
}
.header__mobile-menu .mob__header-btn {
  display: none;
}
.mega-menu__close {
  display: none;
}
@media (max-width: 48em) {
  .header__nav,
  .has-dropdown__phone,
  .has-dropdown__variant {
    display: none;
  }
  .header__mobile-menu .header__nav,
  .header__mobile-menu .header__secondary-nav,
  .header__mobile-menu .has-dropdown__phone,
  .header__mobile-menu .has-dropdown__variant {
    display: block;
    width: 100%;
  }
  .header__mobile-menu .has-dropdown__phone .header__phone,
  .header__mobile-menu .has-dropdown__variant .variant {
    display: none;
  }
  .header__mobile-menu .has-dropdown__phone .dropdown-menu {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    min-height: fit-content;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    order: 2;
  }
  .header__mobile-menu .has-dropdown__variant {
    order: 1;
  }
  .header__mobile-menu .has-dropdown__phone {
    order: 2;
  }
  .header__mobile-menu .has-dropdown__variant .dropdown-menu {
    display: flex;
    gap: 0.75rem;
    position: relative;
    left: 0;
    top: 0;
    min-height: fit-content;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .lang {
    color: rgba(170, 183, 198, 1);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .lang__active {
    color: rgba(0, 133, 235, 1);
  }
  .header__secondary-nav a,
  .header__mobile-menu_nuvs .js-dropdown-trigger,
  .header__menu a,
  .header__phone,
  .variant {
    font-weight: 700;
    font-size: 1.25rem;
  }
  .header__logo img {
    height: 1.489rem;
    width: 9.625rem;
  }
  .header__logo {
    height: 1.489rem;
    width: 13.625rem;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .header__burger span {
    display: none;
  }
  .header__burger::before,
  .header__burger::after {
    content: "";
    height: 0.1rem;
    background: var(--default-color);
    transition: all 0.3s ease;
    position: absolute;
  }
  .header__burger::before {
    width: 1.25rem;
    top: calc(50% - 4px);
  }
  .header__burger::after {
    width: 1.25rem;
    top: calc(50% + 4px);
  }
  .header.is-menu-open .header__burger::before {
    top: 50%;
    transform: rotate(45deg);
  }
  .header.is-menu-open .header__burger::after {
    top: 50%;
    transform: rotate(-45deg);
  }
  .header__mobile-menu_nuvs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .header__menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .header__menu > li > a {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
  }
  .js-dropdown-trigger .arrow {
    transform: rotate(315deg);
    width: 0.5rem;
    height: 0.5rem;
  }
  .has-dropdown.active .mega-menu {
    display: block;
  }
  .mega-menu__wrapper {
    grid-template-columns: 1fr;
  }
  .mega-menu__sidebar {
    display: none;
  }
  .header__mobile-menu {
    position: fixed;
    top: 3rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 3rem);
    background: #fff;
    z-index: 7;
    padding: 1.5rem;
    overflow-y: auto;

    display: none;
    flex-direction: column;
    gap: 2.5rem;
  }
  .header__mobile-menu.submenu-active {
    overflow-y: hidden !important;
  }
  .dropdown-section__variant {
    margin-bottom: 0;
  }
  .header.is-menu-open .header__mobile-menu {
    display: flex;
  }
  .mega-menu {
    position: fixed;
    top: 4rem;
    left: 100%;
    width: 100%;
    height: calc(100vh - 4rem);
    background: #fff;
    transition: left 0.3s ease;
    z-index: 10;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.4s ease,
      visibility 0.4s;
  }
  .has-dropdown.active > .mega-menu {
    transform: translateX(0);
    visibility: visible;
  }
  .header__mobile-menu .has-dropdown.active .mega-menu {
    left: 0;
  }
  .header__mobile-menu .has-dropdown.active .mega-menu {
    max-height: 1000px;
  }
  .mega-menu {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .mega-menu__section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .mega-menu__wrapper {
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .mega-menu__close .arrow {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid #aab7c6;
    border-bottom: 2px solid #aab7c6;
    transform: rotate(140deg);
    transition: transform 0.3s ease;
    border-radius: 0.04rem;
    margin-bottom: 0.2rem;
  }
  .mega-menu__close {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    position: relative;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    padding-top: 0.6rem;
    margin-bottom: 1rem;
  }
  .mega-menu__wrapper {
    height: auto;
  }
  .header__mobile-menu .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .header__mobile-menu .has-dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  .header__mobile-menu .mega-menu__section {
    margin-bottom: 1rem;
  }
  .header__mobile-menu .mega-menu__grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .header__mobile-menu .header__secondary-nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .header__mobile-menu .dropdown-menu {
    display: none;
    padding-left: 1rem;
  }

  .header__mobile-menu .has-dropdown.active .dropdown-menu {
    display: block;
  }
  /* .header__mobile-menu .has-dropdown__phone,
  .header__mobile-menu .has-dropdown__variant {
    margin-top: 1rem;
  } */
  .header__mobile-menu .mob__header-btn {
    display: block;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 1;
    order: 3;
  }
  .header__mobile-menu::after {
    display: block;
    position: fixed;
    bottom: 0;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 58.93%
    );
    width: 100%;
    height: 8.75rem;
    z-index: 1;
    order: 4;
  }
  .dropdown-menu {
    z-index: 0;
  }
  .dropdown-label__phone,
  .dropdown-link__phone,
  .dropdown-text__phone {
    font-size: 0.875rem;
  }
  .dropdown-section__phone {
    margin-bottom: 0.75rem;
  }
  .header__mobile-menu .header__menu li {
    padding-left: 0;
  }
  .header__mobile-menu .header__secondary-nav a,
  .header__mobile-menu .header__mobile-menu_nuvs .js-dropdown-trigger {
    padding-left: 0;
  }
  .header__mobile-menu .has-dropdown__clients .dropdown-menu,
  .header__mobile-menu .has-dropdown__abouts .dropdown-menu {
    box-shadow: none;
    max-width: 100%;
    position: relative;
    top: 0;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .header__mobile-menu .has-dropdown__clients .dropdown-menu a,
  .header__mobile-menu .has-dropdown__abouts .dropdown-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .header__mobile-menu .has-dropdown__clients .dropdown-menu a:last-of-type,
  .header__mobile-menu .has-dropdown__abouts .dropdown-menu a:last-of-type {
    margin-bottom: 0;
  }
}
/* Десктопная версия */
@media (min-width: 48em) {
  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

.hero {
  margin-top: 5rem;
  overflow: hidden;
  margin-bottom: 5rem;
  position: relative;
}
.hero__image-wrapper {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 96.188rem;
  height: 37.813rem;
  margin-right: -16rem;
}
.hero__content h1 span {
  color: var(--secondary);
}
.hero__container {
  display: flex;
  align-items: center;
}
.hero__photo {
  width: 100%;
  height: 47.813rem;
  display: block;
  /* Применяем маску */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -160 900 800'%3E%3Cpath d='M791.924 46L842.21 101.644C869.721 76.7823 874.934 35.5483 854.477 4.62201C834.019 -26.3043 794.033 -37.6391 760.389 -22.0483L791.924 46ZM91.0414 380.388L72.125 307.812C37.3169 316.885 13.8518 349.393 16.2016 385.287C18.5514 421.181 46.0543 450.352 81.7481 454.81L91.0414 380.388ZM697.361 299.859C737.443 289.411 761.467 248.449 751.02 208.367C740.572 168.285 699.61 144.261 659.528 154.708L678.444 227.283L697.361 299.859ZM8.92383 196.5L0.000731468 270.967C214.552 296.676 567.63 232.603 823.458 114.048L791.924 46L760.389 -22.0483C524.217 87.3972 199.21 143.765 17.8469 122.033L8.92383 196.5ZM791.924 46L741.637 -9.64411C563.027 151.769 376.644 240.397 74.8424 307.158L91.0414 380.388L107.24 453.617C427.418 382.791 639.599 284.747 842.21 101.644L791.924 46ZM91.0414 380.388L109.958 452.963L697.361 299.859L678.444 227.283L659.528 154.708L72.125 307.812L91.0414 380.388ZM91.0414 380.388L81.7481 454.81L559.13 514.422L568.424 440L577.717 365.578L100.335 305.966L91.0414 380.388ZM568.424 440L577.717 365.578C488.376 354.422 393.53 358.225 306.795 377.814C220.846 397.225 137.282 433.45 76.2852 491.805L128.131 545.999L179.978 600.193C214.92 566.764 270.252 539.844 339.839 524.129C408.641 508.59 485.971 505.286 559.13 514.422L568.424 440Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -160 900 800'%3E%3Cpath d='M791.924 46L842.21 101.644C869.721 76.7823 874.934 35.5483 854.477 4.62201C834.019 -26.3043 794.033 -37.6391 760.389 -22.0483L791.924 46ZM91.0414 380.388L72.125 307.812C37.3169 316.885 13.8518 349.393 16.2016 385.287C18.5514 421.181 46.0543 450.352 81.7481 454.81L91.0414 380.388ZM697.361 299.859C737.443 289.411 761.467 248.449 751.02 208.367C740.572 168.285 699.61 144.261 659.528 154.708L678.444 227.283L697.361 299.859ZM8.92383 196.5L0.000731468 270.967C214.552 296.676 567.63 232.603 823.458 114.048L791.924 46L760.389 -22.0483C524.217 87.3972 199.21 143.765 17.8469 122.033L8.92383 196.5ZM791.924 46L741.637 -9.64411C563.027 151.769 376.644 240.397 74.8424 307.158L91.0414 380.388L107.24 453.617C427.418 382.791 639.599 284.747 842.21 101.644L791.924 46ZM91.0414 380.388L109.958 452.963L697.361 299.859L678.444 227.283L659.528 154.708L72.125 307.812L91.0414 380.388ZM91.0414 380.388L81.7481 454.81L559.13 514.422L568.424 440L577.717 365.578L100.335 305.966L91.0414 380.388ZM568.424 440L577.717 365.578C488.376 354.422 393.53 358.225 306.795 377.814C220.846 397.225 137.282 433.45 76.2852 491.805L128.131 545.999L179.978 600.193C214.92 566.764 270.252 539.844 339.839 524.129C408.641 508.59 485.971 505.286 559.13 514.422L568.424 440Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #00000026;
  object-position: 75% bottom;
  object-fit: cover;
  margin-top: -11rem;
}
.badge .arrow {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid #aab7c6;
  border-bottom: 2px solid #aab7c6;
  transform: rotate(315deg);
  transition: transform 0.3s ease;
  border-radius: 0.04rem;
  margin-bottom: 0.1rem;
}
.badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: #0085eb1a;
  color: #0085eb;
  width: fit-content;
  padding: 0.313rem 0.7rem 0.313rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
.hero__content h1 {
  margin-bottom: 3.5rem;
}
.btn {
  padding: 1.125rem 2.25rem;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn--primary {
  color: white;
  background: var(--accent-color);
}
.btn--primary:hover {
  background: #fe8c00;
}
.hero__label {
  position: absolute;
  padding: 1.5rem;
  background: rgba(228, 233, 237, 0.750);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  border-radius: 2rem;
  border: none;
  z-index: 5;
  font-size: 1rem;
  font-weight: 500;
}
.label-text {
  font-size: 1.125rem;
  font-weight: 400;
}
.chart {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: 3.813rem;
}
.chart span {
  flex: 1;
  background: #0085eb1a;
  border-radius: 1.875rem;
  height: 40%;
  width: 0.625rem;
}
.chart span:nth-child(2n) {
  height: 60%;
}
.chart span:nth-child(3n) {
  height: 80%;
}
.chart span.active {
  background: #0085eb;
  opacity: 60%;
  height: 100%;
}
.progress-container {
  position: relative;
  height: 0.625rem;
  width: 100%;
  margin-top: 0.5rem;
}
.hero__label--top {
  top: 5%;
  left: 47%;
  width: 17.125rem;
  height: 8rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.label-text--img {
  margin-top: 0.5rem;
  width: 50%;
}
.hero__label--bottom {
  bottom: 13%;
  right: 75%;
  width: 17.125rem;
  height: 8rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.progress-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0085eb1a;
  border-radius: 1.875rem;
}
.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 85%;
  background: #0085eb43;
  border-radius: 1.875rem;
  z-index: 1;
}
.progress-to {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 25%;
  background: #0085eb;
  border-radius: 1.875rem;
  z-index: 2;
}
.mob-hero_block {
  display: none;
}
.logos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.625rem 0;
  background: #fff;
  /* Создаем затухание по краям */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 10%,
    rgb(255, 255, 255) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 10%,
    rgb(255, 255, 255) 90%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logos-slider__track {
  height: 2.89rem;
  display: flex;
  align-items: center;
  gap: 3.125rem;
  width: max-content;
  animation-name: scrollInfinite;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.logos-slider__track img {
  height: auto;
  width: 100%;
  display: block;
  padding: 0.507rem 0;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 100vw));
  }
}

@media (max-width: 48em) {
  .hero__container {
    display: grid;
  }
  .hero__label--top,
  .hero__label--bottom {
    display: none;
  }
  .mob-hero_block {
    display: grid;
    gap: 0.438rem;
    margin-bottom: 1.25rem;
  }
  .mob-hero_block .label-text {
    display: flex;
    align-items: center;
    gap: 0.438rem;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
  }
  .mob-hero_block .label-text img {
    width: 0.875rem;
    height: 0.313rem;
  }
  .badge {
    margin-bottom: 1.063rem;
    padding-right: 0.8rem;
  }
  .hero__content h1 {
    margin-bottom: 1.063rem;
  }
  .hero__content .btn {
    width: 100%;
    font-size: 1.125rem;
    padding: 1rem;
  }
  .hero__image-wrapper {
    order: 1;
  }
  .hero__content {
    order: 2;
  }
  .hero {
    padding: 0;
    margin: 0;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }
  .hero__content {
    padding: 0 1rem;
  }
  .hero__photo {
    object-position: 60% bottom;
    height: 22.438rem;
    margin-top: -3.4rem;
    width: 63rem;
    /*object-position: 14% 68%;*/
    mask-size: 109%;
    mask-position: 3% 74%;
    object-size: 100%;
    transform: rotate(4deg);
  }
  .hero__image-wrapper {
    height: 18.438rem;
    width: 25.188rem;
  }
  .logos-slider {
    margin: 2.5rem 0 0 0;
    padding: 0;
  }
  .logos-slider__track {
    gap: 2.19rem;
    height: 3rem;
    padding: 0.875rem 0;
  }
  .logos-slider__track img {
    padding: 0;
  }
}

.solutions {
  margin-bottom: 5rem;
  overflow: hidden;
  position: relative;
}
.solutions__swiper {
  overflow: visible !important;
  height: 34.625rem;
}
.solutions__nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
}
.swiper-button-prev,
.swiper-button-next {
  position: relative !important;
  top: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 4.25rem !important;
  height: 2.5rem !important;
  border-radius: 6.25rem !important;
  margin-top: 0 !important;
  left: 0 !important;
  transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(254, 140, 0, 1);
  border-color: transparent;
}
.swiper-button-prev:hover img,
.swiper-button-next:hover img {
  filter: brightness(0) invert(1);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next img,
.swiper-button-prev img {
  width: 1.25rem;
  height: 1.25rem;
  transition: all 0.3s ease;
}
.swiper-button-prev:focus,
.swiper-button-next:focus,
.swiper-button-prev:active,
.swiper-button-next:active {
  outline: none !important;
}
.swiper-button-prev,
.swiper-button-next {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  background-color: transparent !important;
}
.solutions__card {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
  height: 26.625rem !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.solutions__swiper .swiper-slide {
  display: flex;
  transition: transform 0.3s ease;
}
.solutions__swiper .swiper-slide:nth-child(4n + 2) {
  transform: translateY(2.5rem);
}
/* 4, 8, 12... (Каждый 4-й) — вверх */
.solutions__swiper .swiper-slide:nth-child(4n) {
  transform: translateY(-2.5rem);
}
.solutions__swiper .swiper-slide:nth-child(odd) {
  transform: translateY(0);
}
.solutions__card--blue {
  color: #fff;
  background: #0085eb url("/local/templates/redesign_2026_ru/assets/img/swiper/card--blue.png") no-repeat
    center / cover;
}
.solutions__card--light {
  background: #f4f7f9 url("/local/templates/redesign_2026_ru/assets/img/swiper/card--light.png") no-repeat
    center / cover;
}
.solutions__card--white {
  background: #fff url("/local/templates/redesign_2026_ru/assets/img/swiper/card--white.png") no-repeat center /
    cover;
}
.solutions__card--orange {
  background: #ff7f00 url("/local/templates/redesign_2026_ru/assets/img/swiper/card--orange.png") no-repeat
    center / cover;
  color: #fff;
}
.solutions__card-title {
  max-width: 18rem;
  z-index: 2;
}
.solutions__card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  pointer-events: none;
}
.solutions__card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
.solutions__card--person .solutions__card-img {
  height: 80%;
  right: -10%;
}
@media (max-width: 48em) {
  .solutions {
    margin-bottom: 4rem;
  }
  .solutions__swiper {
    height: 24.313rem;
  }
  .solutions__card.swiper-slide {
    /* width: 13.5rem; */
    height: 18.938rem !important;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  .solutions__nav {
    margin-top: 1.5rem;
  }
  .solutions__swiper .swiper-slide:nth-child(odd) {
    transform: translateY(0);
  }
}

.feedback {
  margin-bottom: 7.5rem;
}
.feedback__content {
  max-width: 100%;
  margin: 0 auto;
  background: #0085eb1a;
  border-radius: 2.5rem;
  display: flex;
  overflow: hidden;
  position: relative;
  /* height: 40.813rem; */
}
.feedback__visual {
  width: 37.375rem;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.feedback__visual img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
}
.feedback__form-wrapper {
  width: 44.625rem;
  padding: 4rem 4rem 4rem 5rem;
  z-index: 2;
  position: relative;
}
.feedback__title {
  margin-bottom: 1rem;
}
.feedback__subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  max-width: 32rem;
}
.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedback__input {
  width: 100%;
  padding: 1.125rem 2.25rem;
  border-radius: 3.5rem;
  background: #fff;
  font-size: 1.125rem;
  outline: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.feedback__input::placeholder {
  color: #aab7c6;
}
.feedback__input--error {
  border-color: #ff4141 !important;
  color: #ff4141;
}
.feedback__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.error-message {
  color: #ff0000;
  font-size: 1rem;
  margin-left: 0.5rem;
  display: none;
  transition: all 0.2s;
}
.feedback__input--error + .error-message {
  display: block;
}
.feedback__input:hover {
  border-color: #00000026;
}
.feedback__input:focus,
.feedback__input:active {
  border-color: #ff7a00;
}
.feedback__button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 1.125rem 2.25rem;
  border-radius: 6.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  width: max-content;
  margin-top: 0.5rem;
  transition:
    transform 0.2s,
    background 0.3s;
  text-align: center;
}
.feedback__button:hover {
  background: #fe8c00;
}
.feedback__success {
  width: 44.625rem;
  padding: 4rem 4rem 4rem 4rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.success-icon {
  margin-bottom: 1rem;
}
.success-icon img {
  width: 4rem;
  height: 4rem;
}
.feedback__success .feedback__subtitle {
  max-width: 100%;
  margin-bottom: 2.5rem;
}
.feedback__success .feedback__button {
  margin-top: 0;
}
@media (max-width: 48em) {
  .feedback {
    padding: 0;
    margin-bottom: 4rem;
  }
  .feedback__content {
    flex-direction: column;
    border-radius: 2rem;
    height: auto;
  }
  .feedback__form-wrapper {
    padding: 1.5rem 1.5rem 1.625rem 1.5rem;
    order: 1;
    width: auto;
    background: url("/local/templates/redesign_2026_ru/assets/img/feedback/tract-ribbon-Photoroom.png") no-repeat
      center / contain;
    background-size: 270%;
    background-position: 36% -12%;
  }
  .feedback__visual {
    order: 2;
    display: none;
  }
  .feedback__title br {
    display: none;
  }
  .feedback__button {
    width: 100%;
    margin-top: 0;
    height: 3.375rem;
    padding: 1rem;
    font-size: 1.125rem;
  }
  .feedback__subtitle {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .feedback__input {
    padding: 0.688rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    height: 3.375rem;
  }
  .feedback__success {
    padding: 1.5rem 1.5rem 1.625rem 1.5rem;
    order: 1;
    width: auto;
    position: relative;
    min-height: 29.25rem;
    background: url("/local/templates/redesign_2026_ru/assets/img/feedback/tract-ribbon-Photoroom.png") no-repeat
      center / cover;
    background-size: 270%;
    background-position: 36% -12%;
    justify-content: flex-start;
  }
  .success-icon img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .feedback__success .feedback__subtitle {
    margin-bottom: 0.75rem;
  }
}

.partner {
  margin-bottom: 7.5rem;
  overflow: hidden;
}
.partner__container {
  display: flex;
  position: relative;
}
.partner__content {
  width: 56.5rem;
  z-index: 2;
}
.partner__title {
  margin-bottom: 1rem;
}
.partner__subtitle {
  margin-bottom: 2.5rem;
}
.partner__grid {
  display: grid;
  row-gap: 2rem;
  margin-bottom: 2.5rem;
}
.partner__grid-block {
  display: flex;
  gap: 2rem;
}
.partner-card {
  display: grid;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  width: 17.5rem;
}
.partner-card--promo {
  background: rgba(0, 133, 235, 0.1);
  border: none;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 37.5rem;
}
.partner-card__promo-val {
  font-size: 4rem;
  font-family: "Caveat", sans-serif;
  font-weight: 800;
  color: var(--accent-link);
  margin-bottom: 0.625rem;
  line-height: 0.8;
}
.partner-card__promo-text {
  font-weight: 600;
  margin-bottom: 3rem;
}
.partner-card__promo-note {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 11.484rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.partner-card__arrow {
  position: absolute;
  left: -9.5rem;
  top: 0.4rem;
  width: 7.523rem;
  height: 1.961rem;
}
.partner-card__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}
.partner-card__text {
  font-weight: 400;
}

.partner__btn {
  padding: 1.2rem 3rem;
  background: #ff7a00;
  color: #fff;
  border-radius: 3rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}
.mob-arr {
  display: none;
}
.desc-arr {
  display: block;
}

.partner__image {
  position: absolute;
  right: 1rem;
  top: 60%;
  transform: translateY(-50%);
  width: 50%;
}
.partner__image img {
  width: 100%;
  height: auto;
}
.partner__photo {
  width: 100%;
  /* width: 57rem;
  height: 54.063rem;  */
  display: block;
  object-fit: contain;
  object-position: center;
  /*-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='39 40 1004 848'%3E%3Cpath d='M988.521 294.24L994.727 372.996L989.779 215.25L988.521 294.24ZM118.044 280.377L118.374 201.378C74.9249 201.196 39.4848 236.136 39.0482 279.583C38.6116 323.03 73.3424 358.675 116.786 359.367L118.044 280.377ZM903.294 497.334L880.557 572.992L955.872 438.373L903.294 497.334ZM174.984 480.14L149.648 405.313L178.941 559.041L174.984 480.14ZM894.984 836.76C909.538 877.892 954.679 899.438 995.811 884.885C1036.94 870.331 1058.49 825.19 1043.94 784.058L969.46 810.409L894.984 836.76ZM283.673 101.365L232.929 161.913C283.182 204.028 398.983 261.684 532.532 305.612C668.394 350.3 836.499 385.464 994.727 372.996L988.521 294.24L982.315 215.484C852.978 225.676 707.266 196.758 581.9 155.522C454.219 113.525 361.38 63.4135 334.417 40.8168L283.673 101.365ZM988.521 294.24L989.779 215.25L119.302 201.387L118.044 280.377L116.786 359.367L987.263 373.23L988.521 294.24ZM118.044 280.377L117.715 359.376C213.001 359.774 362.734 376.98 508.238 411.868C657.088 447.558 785.436 498.084 850.715 556.296L903.294 497.334L955.872 438.373C859.28 352.238 697.257 294.711 545.078 258.223C389.551 220.932 227.595 201.833 118.374 201.378L118.044 280.377ZM903.294 497.334L926.031 421.677C777.673 377.092 655.88 347.267 534.329 342.051C411.091 336.762 292.694 356.88 149.648 405.313L174.984 480.14L200.319 554.967C329.716 511.155 428.324 495.647 527.555 499.906C628.474 504.237 734.615 529.132 880.557 572.992L903.294 497.334ZM174.984 480.14L178.941 559.041C340.208 550.952 510.067 582.9 646.354 639.11C787.541 697.339 872.316 772.692 894.984 836.76L969.46 810.409L1043.94 784.058C998.031 654.317 858.858 555.843 706.596 493.045C549.434 428.226 356.342 391.945 171.026 401.239L174.984 480.14Z' fill='black'/%3E%3C/svg%3E");*/
  /*mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='39 40 1004 848'%3E%3Cpath d='M988.521 294.24L994.727 372.996L989.779 215.25L988.521 294.24ZM118.044 280.377L118.374 201.378C74.9249 201.196 39.4848 236.136 39.0482 279.583C38.6116 323.03 73.3424 358.675 116.786 359.367L118.044 280.377ZM903.294 497.334L880.557 572.992L955.872 438.373L903.294 497.334ZM174.984 480.14L149.648 405.313L178.941 559.041L174.984 480.14ZM894.984 836.76C909.538 877.892 954.679 899.438 995.811 884.885C1036.94 870.331 1058.49 825.19 1043.94 784.058L969.46 810.409L894.984 836.76ZM283.673 101.365L232.929 161.913C283.182 204.028 398.983 261.684 532.532 305.612C668.394 350.3 836.499 385.464 994.727 372.996L988.521 294.24L982.315 215.484C852.978 225.676 707.266 196.758 581.9 155.522C454.219 113.525 361.38 63.4135 334.417 40.8168L283.673 101.365ZM988.521 294.24L989.779 215.25L119.302 201.387L118.044 280.377L116.786 359.367L987.263 373.23L988.521 294.24ZM118.044 280.377L117.715 359.376C213.001 359.774 362.734 376.98 508.238 411.868C657.088 447.558 785.436 498.084 850.715 556.296L903.294 497.334L955.872 438.373C859.28 352.238 697.257 294.711 545.078 258.223C389.551 220.932 227.595 201.833 118.374 201.378L118.044 280.377ZM903.294 497.334L926.031 421.677C777.673 377.092 655.88 347.267 534.329 342.051C411.091 336.762 292.694 356.88 149.648 405.313L174.984 480.14L200.319 554.967C329.716 511.155 428.324 495.647 527.555 499.906C628.474 504.237 734.615 529.132 880.557 572.992L903.294 497.334ZM174.984 480.14L178.941 559.041C340.208 550.952 510.067 582.9 646.354 639.11C787.541 697.339 872.316 772.692 894.984 836.76L969.46 810.409L1043.94 784.058C998.031 654.317 858.858 555.843 706.596 493.045C549.434 428.226 356.342 391.945 171.026 401.239L174.984 480.14Z' fill='black'/%3E%3C/svg%3E");*/
  /*-webkit-mask-size: contain;*/
  /*mask-size: contain;*/
  /*-webkit-mask-repeat: no-repeat;*/
  /*mask-repeat: no-repeat;*/
  /*-webkit-mask-position: right center;*/
  /*mask-position: 30rem 8rem;*/
  /*mask-size: 58rem;*/
}
@media (max-width: 1920px) {
  .partner__photo {
    width: 100%;
    /* width: 57rem;
  height: 54.063rem;  */
    display: block;
    object-fit: contain;
    object-position: center;
    /*-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='39 40 1004 848'%3E%3Cpath d='M988.521 294.24L994.727 372.996L989.779 215.25L988.521 294.24ZM118.044 280.377L118.374 201.378C74.9249 201.196 39.4848 236.136 39.0482 279.583C38.6116 323.03 73.3424 358.675 116.786 359.367L118.044 280.377ZM903.294 497.334L880.557 572.992L955.872 438.373L903.294 497.334ZM174.984 480.14L149.648 405.313L178.941 559.041L174.984 480.14ZM894.984 836.76C909.538 877.892 954.679 899.438 995.811 884.885C1036.94 870.331 1058.49 825.19 1043.94 784.058L969.46 810.409L894.984 836.76ZM283.673 101.365L232.929 161.913C283.182 204.028 398.983 261.684 532.532 305.612C668.394 350.3 836.499 385.464 994.727 372.996L988.521 294.24L982.315 215.484C852.978 225.676 707.266 196.758 581.9 155.522C454.219 113.525 361.38 63.4135 334.417 40.8168L283.673 101.365ZM988.521 294.24L989.779 215.25L119.302 201.387L118.044 280.377L116.786 359.367L987.263 373.23L988.521 294.24ZM118.044 280.377L117.715 359.376C213.001 359.774 362.734 376.98 508.238 411.868C657.088 447.558 785.436 498.084 850.715 556.296L903.294 497.334L955.872 438.373C859.28 352.238 697.257 294.711 545.078 258.223C389.551 220.932 227.595 201.833 118.374 201.378L118.044 280.377ZM903.294 497.334L926.031 421.677C777.673 377.092 655.88 347.267 534.329 342.051C411.091 336.762 292.694 356.88 149.648 405.313L174.984 480.14L200.319 554.967C329.716 511.155 428.324 495.647 527.555 499.906C628.474 504.237 734.615 529.132 880.557 572.992L903.294 497.334ZM174.984 480.14L178.941 559.041C340.208 550.952 510.067 582.9 646.354 639.11C787.541 697.339 872.316 772.692 894.984 836.76L969.46 810.409L1043.94 784.058C998.031 654.317 858.858 555.843 706.596 493.045C549.434 428.226 356.342 391.945 171.026 401.239L174.984 480.14Z' fill='black'/%3E%3C/svg%3E");*/
    /*mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='39 40 1004 848'%3E%3Cpath d='M988.521 294.24L994.727 372.996L989.779 215.25L988.521 294.24ZM118.044 280.377L118.374 201.378C74.9249 201.196 39.4848 236.136 39.0482 279.583C38.6116 323.03 73.3424 358.675 116.786 359.367L118.044 280.377ZM903.294 497.334L880.557 572.992L955.872 438.373L903.294 497.334ZM174.984 480.14L149.648 405.313L178.941 559.041L174.984 480.14ZM894.984 836.76C909.538 877.892 954.679 899.438 995.811 884.885C1036.94 870.331 1058.49 825.19 1043.94 784.058L969.46 810.409L894.984 836.76ZM283.673 101.365L232.929 161.913C283.182 204.028 398.983 261.684 532.532 305.612C668.394 350.3 836.499 385.464 994.727 372.996L988.521 294.24L982.315 215.484C852.978 225.676 707.266 196.758 581.9 155.522C454.219 113.525 361.38 63.4135 334.417 40.8168L283.673 101.365ZM988.521 294.24L989.779 215.25L119.302 201.387L118.044 280.377L116.786 359.367L987.263 373.23L988.521 294.24ZM118.044 280.377L117.715 359.376C213.001 359.774 362.734 376.98 508.238 411.868C657.088 447.558 785.436 498.084 850.715 556.296L903.294 497.334L955.872 438.373C859.28 352.238 697.257 294.711 545.078 258.223C389.551 220.932 227.595 201.833 118.374 201.378L118.044 280.377ZM903.294 497.334L926.031 421.677C777.673 377.092 655.88 347.267 534.329 342.051C411.091 336.762 292.694 356.88 149.648 405.313L174.984 480.14L200.319 554.967C329.716 511.155 428.324 495.647 527.555 499.906C628.474 504.237 734.615 529.132 880.557 572.992L903.294 497.334ZM174.984 480.14L178.941 559.041C340.208 550.952 510.067 582.9 646.354 639.11C787.541 697.339 872.316 772.692 894.984 836.76L969.46 810.409L1043.94 784.058C998.031 654.317 858.858 555.843 706.596 493.045C549.434 428.226 356.342 391.945 171.026 401.239L174.984 480.14Z' fill='black'/%3E%3C/svg%3E");*/
    /*-webkit-mask-size: contain;*/
    /*mask-size: contain;*/
    /*-webkit-mask-repeat: no-repeat;*/
    /*mask-repeat: no-repeat;*/
    /*-webkit-mask-position: right center;*/
    /*mask-position: 28rem 8rem;*/
    /*mask-size: 58rem;*/
  }
}
@media (max-width: 67em) {
  .partner__photo {
    width: 100%;
    /* width: 57rem;
  height: 54.063rem;  */
    display: block;
    object-fit: contain;
    object-position: center;
    /*-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='39 40 1004 848'%3E%3Cpath d='M988.521 294.24L994.727 372.996L989.779 215.25L988.521 294.24ZM118.044 280.377L118.374 201.378C74.9249 201.196 39.4848 236.136 39.0482 279.583C38.6116 323.03 73.3424 358.675 116.786 359.367L118.044 280.377ZM903.294 497.334L880.557 572.992L955.872 438.373L903.294 497.334ZM174.984 480.14L149.648 405.313L178.941 559.041L174.984 480.14ZM894.984 836.76C909.538 877.892 954.679 899.438 995.811 884.885C1036.94 870.331 1058.49 825.19 1043.94 784.058L969.46 810.409L894.984 836.76ZM283.673 101.365L232.929 161.913C283.182 204.028 398.983 261.684 532.532 305.612C668.394 350.3 836.499 385.464 994.727 372.996L988.521 294.24L982.315 215.484C852.978 225.676 707.266 196.758 581.9 155.522C454.219 113.525 361.38 63.4135 334.417 40.8168L283.673 101.365ZM988.521 294.24L989.779 215.25L119.302 201.387L118.044 280.377L116.786 359.367L987.263 373.23L988.521 294.24ZM118.044 280.377L117.715 359.376C213.001 359.774 362.734 376.98 508.238 411.868C657.088 447.558 785.436 498.084 850.715 556.296L903.294 497.334L955.872 438.373C859.28 352.238 697.257 294.711 545.078 258.223C389.551 220.932 227.595 201.833 118.374 201.378L118.044 280.377ZM903.294 497.334L926.031 421.677C777.673 377.092 655.88 347.267 534.329 342.051C411.091 336.762 292.694 356.88 149.648 405.313L174.984 480.14L200.319 554.967C329.716 511.155 428.324 495.647 527.555 499.906C628.474 504.237 734.615 529.132 880.557 572.992L903.294 497.334ZM174.984 480.14L178.941 559.041C340.208 550.952 510.067 582.9 646.354 639.11C787.541 697.339 872.316 772.692 894.984 836.76L969.46 810.409L1043.94 784.058C998.031 654.317 858.858 555.843 706.596 493.045C549.434 428.226 356.342 391.945 171.026 401.239L174.984 480.14Z' fill='black'/%3E%3C/svg%3E");*/
    /*mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='39 40 1004 848'%3E%3Cpath d='M988.521 294.24L994.727 372.996L989.779 215.25L988.521 294.24ZM118.044 280.377L118.374 201.378C74.9249 201.196 39.4848 236.136 39.0482 279.583C38.6116 323.03 73.3424 358.675 116.786 359.367L118.044 280.377ZM903.294 497.334L880.557 572.992L955.872 438.373L903.294 497.334ZM174.984 480.14L149.648 405.313L178.941 559.041L174.984 480.14ZM894.984 836.76C909.538 877.892 954.679 899.438 995.811 884.885C1036.94 870.331 1058.49 825.19 1043.94 784.058L969.46 810.409L894.984 836.76ZM283.673 101.365L232.929 161.913C283.182 204.028 398.983 261.684 532.532 305.612C668.394 350.3 836.499 385.464 994.727 372.996L988.521 294.24L982.315 215.484C852.978 225.676 707.266 196.758 581.9 155.522C454.219 113.525 361.38 63.4135 334.417 40.8168L283.673 101.365ZM988.521 294.24L989.779 215.25L119.302 201.387L118.044 280.377L116.786 359.367L987.263 373.23L988.521 294.24ZM118.044 280.377L117.715 359.376C213.001 359.774 362.734 376.98 508.238 411.868C657.088 447.558 785.436 498.084 850.715 556.296L903.294 497.334L955.872 438.373C859.28 352.238 697.257 294.711 545.078 258.223C389.551 220.932 227.595 201.833 118.374 201.378L118.044 280.377ZM903.294 497.334L926.031 421.677C777.673 377.092 655.88 347.267 534.329 342.051C411.091 336.762 292.694 356.88 149.648 405.313L174.984 480.14L200.319 554.967C329.716 511.155 428.324 495.647 527.555 499.906C628.474 504.237 734.615 529.132 880.557 572.992L903.294 497.334ZM174.984 480.14L178.941 559.041C340.208 550.952 510.067 582.9 646.354 639.11C787.541 697.339 872.316 772.692 894.984 836.76L969.46 810.409L1043.94 784.058C998.031 654.317 858.858 555.843 706.596 493.045C549.434 428.226 356.342 391.945 171.026 401.239L174.984 480.14Z' fill='black'/%3E%3C/svg%3E");*/
    /*-webkit-mask-size: contain;*/
    /*mask-size: contain;*/
    /*-webkit-mask-repeat: no-repeat;*/
    /*mask-repeat: no-repeat;*/
    /*-webkit-mask-position: right center;*/
    /*mask-position: 27rem 8rem;*/
    /*mask-size: 58rem;*/
  }
}
@media (max-width: 48em) {
  .mob-arr {
    display: block;
  }
  .desc-arr {
    display: none;
  }
  .partner {
    margin-bottom: 4rem;
  }
  .partner__grid {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .partner__grid-block {
    display: grid;
    gap: 1rem;
  }
  .partner-card--promo {
    position: relative;
  }
  .partner-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    height: fit-content;
    width: 100%;
  }
  .partner-card:nth-child(1n) {
    order: 2;
  }
  .partner-card:nth-child(2n) {
    order: 1;
  }
  .partner__grid-block {
    order: 2;
  }
  .partner-card__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .partner-card__promo-note {
    position: static;
    width: 100%;
    font-weight: 400;
  }
  .partner-card__promo-val {
    margin-bottom: 0;
    font-size: 4rem;
  }
  .partner-card__arrow {
    left: 13rem;
    top: 4rem;
    width: 5.5rem;
    height: 5.5rem;
  }
  .partner__btn {
    width: 100%;
    text-align: center;
  }
  .partner__image {
    display: none;
  }
  .partner__content {
    width: 100%;
  }
  .partner__subtitle {
    margin-bottom: 2rem;
  }
  .partner-card__promo-text {
    margin-bottom: 1.875rem;
    font-weight: 400;
  }
}

.stats {
  margin-bottom: 7.5rem;
  background: var(--accent-link);
  border-radius: 4rem;
  position: relative;
  z-index: 1;
}
.stats__bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.stats__bg-decor svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stats__content {
  padding: 3.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats__title {
  margin-bottom: 2.5rem;
  width: 47.75rem;
}
.stats__main-grid {
  display: flex;
  gap: 4rem;
  margin-bottom: 3.75rem;
}
.stats__number {
  display: block;
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.stats__text {
  font-size: 1.125rem;
  max-width: 15.75rem;
}
.stats__card-title {
  margin-bottom: 0.75rem;
}
.stats__cards {
  display: flex;
  gap: 2rem;
  padding: 0.1rem 0 0 0.1rem;
}
.stats__card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border-radius: 2rem;
  background: #0085eb1a;
  backdrop-filter: blur(25px);
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 5.29%,
    rgba(131, 146, 219, 0.12) 100%
  );
  transition: transform 0.3s ease;
  height: 21.188rem !important;
}
.stats__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 2rem;
  padding: 1px;
  background: conic-gradient(
    from 180deg at 60% 60%,
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0) 90deg,
    rgba(255, 255, 255, 0.8) 135deg,
    /* Левый верхний */ rgba(255, 255, 255, 0.8) 180deg,
    /* Середина верха */ rgba(255, 255, 255, 0.8) 225deg,
    /* Правый верхний */ rgba(255, 255, 255, 0) 270deg,
    rgba(255, 255, 255, 0) 360deg
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.stats__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}
.stats__icon {
  margin-bottom: 1.75rem;
}
.stats__icon img {
  width: 4rem;
  height: 4rem;
}
.stats__card-text {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 200;
}
.stats__note {
  position: absolute;
  top: 4rem;
  right: 4rem;
  display: flex;
  gap: 1rem;
}
.stats__note p {
  font-size: 1.125rem;
  width: 15.188rem;
  line-height: 1.4;
  opacity: 0.9;
}
.stats__note-arrow {
  height: 2.687rem;
  width: 3.862rem;
  margin-top: 0.6rem;
}
@media (max-width: 48em) {
  .stats {
    padding: 0;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 4rem;
  }
  .stats__bg-decor svg {
    width: 300%;
    transform: rotate(344deg) translate(-36rem, -15rem);
  }
  .stats__swiper {
    overflow: visible !important;
  }
  .stats__content {
    padding: 1.5rem;
  }
  .stats__main-grid {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.813rem;
  }
  .stats__title {
    margin-bottom: 2rem;
    width: auto;
  }
  .stats__text {
    font-size: 1rem;
  }
  .stats__number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .stats__cards {
    display: flex;
    gap: 0;
  }
  .stats__card {
    height: auto !important;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
  }
  .stats__note {
    position: static;
    margin-bottom: 2rem;
  }
  .stats__note {
    display: none;
  }
  .stats__icon img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .stats__card-text {
    font-size: 1rem;
    width: 13.5rem;
  }
  .stats__card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.stories {
  margin-bottom: 7.5rem;
  overflow: hidden;
}
.stories__title {
  margin-bottom: 2.5rem;
}
.story-card {
  background: rgba(247, 247, 247, 1);
  border-radius: 2.5rem;
  padding: 2.5rem;
  display: flex !important;
  gap: 2.5rem;
  height: auto;
}
.stories__slider {
  overflow: visible !important;
}
.stories__slider .swiper-wrapper {
  align-items: flex-end;
}
.story-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.story-card__quote {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.story-card__more {
  color: rgba(0, 133, 235, 1);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 3.5rem;
  font-size: 1.125rem;
}
.story-card__name {
  margin-bottom: 0.25rem;
}
.story-card__job {
  color: rgba(0, 0, 0, 0.4);
}
.story-card__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #e0e0e0;
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  min-width: 17.813rem;
  height: 27.375rem;
}
.story-card__logo {
  margin-bottom: 2rem;
}
.story-card__logo img {
  width: 15.313rem;
  height: auto;
}
.story-card__desc {
  color: rgba(0, 0, 0, 0.4);
}
.stories__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stories__controls {
  display: flex;
  gap: 23.125rem;
  align-items: center;
  margin-top: 2.5rem;
}

.stories__arrow {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories__fraction {
  font-size: 1.125rem !important;
  color: rgba(0, 0, 0, 0.4) !important;
  text-align: center;
  width: 3.25rem !important;
}
.swiper-pagination-current {
  color: rgba(0, 0, 0, 0.4) !important;
}
.stories__controls .news__btn-all {
  margin-top: 0;
}
@media (max-width: 48em) {
  .stories {
    margin-bottom: 4rem;
  }
  .story-card {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.5rem;
  }
  .story-card__side {
    border-left: none;
    border-top: 1px solid #eee;
    padding: 1.25rem;
    height: auto;
  }
  .story-card__logo {
    margin-bottom: 2.5rem;
  }
  .story-card__logo img {
    width: 9.125rem;
  }
  .story-card__quote {
    font-size: 1.25rem;
  }
  .stories__controls {
    gap: 2rem;
    justify-content: space-between;
  }
  .stories__all-btn {
    width: 100%;
    text-align: center;
  }
  .stories__controls .news__btn-all {
    font-size: 1rem;
    padding: 0.625rem 1.5rem;
    width: auto;
  }
  .stories__fraction {
    display: none !important;
  }
  .stories__nav {
    gap: 0.75rem;
  }
  .story-card__more {
    margin-bottom: 2rem;
  }
}

.support {
  margin-bottom: 7.5rem;
}
.support__wrapper {
  background: #007bff;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.support__wrapper {
  background-color: #007bff;
  background: #007bff url("/local/templates/redesign_2026_ru/assets/img/rating/bg-stars.svg") no-repeat center /
    cover;
  background-repeat: no-repeat;
  background-position: -4% 35%;
  background-size: contain;
  background-size: 56%;
}
.support__image-side {
  width: 32.75rem;
  position: relative;
  height: 30.725rem;
}
.support__title {
  margin-bottom: 1rem;
}
.support__main-img {
  transform: scale(1.8);
  transform-origin: bottom center;
  position: absolute;
  bottom: 0;
  left: -110px;
  width: auto;
  height: auto;
}
.support__badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  padding: 2rem;
  border-radius: 2rem;
  color: var(--default-color);
  min-width: 13.135rem;
  width: 100%;
  max-width: 13.588rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.support__badge--left {
  bottom: 1.25rem;
  left: 1.25rem;
}
.support__badge--right {
  top: 40%;
  right: 20px;
}
.badge-icon {
  margin-bottom: 0.875rem;
}
.badge-icon img {
  width: 3.125rem;
  height: 3.125rem;
}
.support__content {
  width: 47.625rem;
  padding-left: 1.125rem;
}
.support__stats {
  display: flex;
  gap: 4rem;
  margin: 2.5rem 0 3.625rem 0;
}
.stat-val {
  font-size: 3.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.stat-val img {
  width: 4rem;
  height: 4rem;
}
.support__btn {
  display: inline-block;
  background: #fff;
  color: #007bff;
  padding: 1.125rem 2.25rem;
  border-radius: 6.25rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
  transition: opacity 0.2s ease;
}
.support__btn:hover {
  opacity: 80%;
}
@media (max-width: 48em) {
  .support {
    margin-bottom: 4rem;
  }
  .support__wrapper {
    flex-direction: column;
    border-radius: 2rem;
    background-size: 176%;
    background-position: 14% 105%;
    height: 100%;
  }
  .support__image-side {
    display: none;
  }
  .support__content {
    padding: 1.5rem;
    width: 100%;
  }
  .support__stats {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  .stat-item p {
    font-weight: 300;
  }
  .stat-item p br,
  .support__desc br {
    display: none;
  }
  .stat-val {
    font-size: 2.5rem;
  }
  .stat-val img {
    width: 1.875rem;
    height: 1.875rem;
  }
  .support__desc {
    width: 80%;
  }
  .support__btn {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.125rem;
  }
}

.news {
  margin-bottom: 5.125rem;
  background: #fff;
}
.news__title {
  margin-bottom: 2.5rem;
}
.news__list.swiper-wrapper {
  display: grid;
  grid-template-columns: 32.875rem 19rem 26rem;
  gap: 2rem;
  align-items: start;
  width: 100% !important;
}
.news__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto !important;
  width: 100% !important;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.news__item:first-child {
  grid-row: span 1;
}
.news__item:not(:first-child) .news__img {
  aspect-ratio: 1 / 0.8;
}
.news__item:first-child .news__img {
  width: 32.875rem;
  height: 32.875rem;
  aspect-ratio: 32.875 / 32.875;
  background: #3d4a55;
}
.news__item:not(:first-child) .news__img {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.news__item:hover .news__img img {
  transform: scale(1.1);
}
.news__item:hover .news__item-title {
  color: #ff7f00;
}
.news__item:first-child:hover .news__img {
  background-position: 0% 100%;
}
.news__item:first-child:hover .news__img img {
  transform: none;
}
.news__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
  overflow: hidden;
  background: #f0f2f5;
  display: block;
}
.news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news__info {
  margin-top: 1.5rem;
}
.news__item-title {
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.news__date {
  color: rgba(0, 0, 0, 0.401);
  font-size: 0.875rem;
  font-weight: 500;
}
.news__btn-all {
  display: inline-block;
  margin-top: 2.5rem;
  border: 1px solid var(--accent-link);
  color: var(--accent-link);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}
.news__btn-all:hover {
  background: var(--accent-link);
  color: white;
}
.news__item:first-child .news__img {
  /* background-image: url('white-line.svg'); */
  background-repeat: no-repeat;
  background-position: right top;
  position: relative;
  background-size: 70%;
  transition: background-position 0.6s ease;
}
.news__item:first-child:hover .news__img {
  background-position: right 0% center;
}
@media (max-width: 48em) {
  .news {
    margin-bottom: 4rem;
    overflow: hidden;
  }
  .news__swiper {
    overflow: visible !important;
  }
  .news__btn-all {
    margin-top: 2rem;
    width: 100%;
  }
  .news__list.swiper-wrapper {
    display: flex !important;
    grid-template-columns: none;
    gap: 0;
    width: auto !important;
  }
  .news__item.swiper-slide {
    width: 18rem !important;
    flex-shrink: 0;
  }
  .news__item.swiper-slide .news__img {
    width: 100% !important;
  }
  .news__item:first-child .news__img {
    height: 21.25rem;
  }
  .news__img {
    border-radius: 1.5rem;
  }
  .news__title {
    margin-bottom: 2rem;
  }
  .news__info {
    padding: 0 0.5rem;
    font-size: 1.25rem;
    margin-top: 1rem;
  }
  .news__item-title br {
    display: none;
  }
}

.footer {
  padding-bottom: 4rem;
  background: #fff;
  font-size: 1rem;
  color: var(--default-color);
}
.footer__subscribe {
  position: relative;
  overflow: hidden;
  background: #0085eb1a;
  border-radius: 2rem;
  padding: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.footer__subscribe::after {
  content: "";
  position: absolute;
  background: url(/local/templates/redesign_2026_ru/assets/img/footer/bg_removal.png) no-repeat center / contain;
  width: 27rem;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background-size: 210%;
  background-position-x: 40%;
}
.footer__socials {
  display: grid;
  gap: 0.75rem;
}
.subscribe-box__form {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
}
.subscribe-box__form .input {
  padding: 0.594rem 1.5rem;
  border-radius: 3.5rem;
  width: 21.563rem;
  font-size: 1.125rem;
  height: 2.75rem;
}
.subscribe-box__form .input::placeholder {
  color: #aab7c6;
}
.footer__socials-block {
  display: flex;
  gap: 1.5rem;
}
.subscribe-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.subscribe-box p {
  color: var(--secondary);
  font-weight: 500;
  font-size: 1rem;
}
.footer__subscribe h3 {
  margin-bottom: 0.5rem;
}
.btn--orange {
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.875rem;
  border-radius: 5rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.btn--orange:hover {
  background: #fe8c00;
}
.footer__contacts-top {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-bottom: 2.188rem;
  min-height: 8.726rem;
}
.contact-group_block {
  display: grid;
  height: fit-content;
  gap: 0.788rem;
}
.contact-group__label {
  font-weight: 600;
}
.contact-group_block a {
  display: flex;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 500;
}
.contact-group_block a img {
  width: 1.25rem;
  height: 1.25rem;
}
.phone-huge {
  font-size: 5rem;
  font-weight: 800;
  margin-left: -1rem;
  color: var(--accent-link);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.15rem;
}
.footer__main-phone {
  display: grid;
  transform: rotate(-7deg);
  font-family: "Caveat", sans-serif;
  font-weight: 700;
  width: 41.813rem;
  height: fit-content;
  margin-top: -0.8rem;
}
.label-blue {
  font-size: 1.939rem;
  line-height: 120%;
  letter-spacing: -3%;
  color: var(--secondary);
  font-style: italic;
}

/* Навигация */
.footer__main-grey {
  background: #00000008;
  padding: 3.063rem 2.5rem;
  border-radius: 2.5rem;
}
.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem;
  margin-bottom: 2.188rem;
  white-space: nowrap;
}
.footer__nav-col h4 {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  display: flex;
  gap: 0.55rem;
  align-items: center;
}
.footer__nav-col ul {
  color: var(--secondary);
  margin-top: 1rem;
  font-weight: 500;
}
.footer__nav-col ul li {
  margin-bottom: 0.85rem;
}
.footer__nav-col a {
  transition: 0.2s;
}
.footer__nav-col a:hover {
  color: var(--accent-link);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer__legal {
  width: 35.188rem;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.875rem;
}
.footer__policy {
  display: grid;
  gap: 0.8rem;
  height: fit-content;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  width: 17.375rem;
}
.footer__policy a {
  opacity: 0.8;
}
.footer__policy a:hover {
  opacity: 1;
}
.contact-group {
  display: grid;
  height: fit-content;
  gap: 1rem;
}
.mob-v {
  display: none;
}
.mob_footer {
  display: flex;
}
@media (max-width: 48em) {
  .mob_footer {
    display: none;
  }
  .mob-v {
    display: flex;
  }
  .footer__main-grey {
    padding: 0;
    background: none;
  }
  .footer {
    padding-bottom: 0;
  }
  .footer .container {
    padding: 1rem 1rem 2.313rem 1rem;
    background: #00000008;
    border-radius: 1.4rem;
  }
  .footer__policy a {
    opacity: 1;
  }
  .subscribe-box {
    padding: 1.5rem;
    border-radius: 1.5rem;
    gap: 2.5rem;
    background: white;
  }
  .footer__nav-col ul li:last-child {
    margin-bottom: 0;
  }
  .label-blue {
    font-size: 1.5rem;
  }
  .footer__contacts-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-group_block a {
    color: #000000;
    font-size: 0.875rem;
  }
  .contact-group_block a img {
    display: none;
  }
  .contact-group__label {
    color: var(--secondary);
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .footer__legal {
    width: 100%;
  }
  .footer p {
    width: 100%;
  }
  .footer__main-phone {
    width: 100%;
    order: 1;
    padding-bottom: 1.8rem;
    margin-top: -1.8rem;
  }
  .phone-huge {
    font-size: 3rem;
    margin-left: -0.6rem;
    letter-spacing: -0.1rem;
  }
  .contact-group {
    order: 2;
  }
  .footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .footer__nav-col h4 {
    margin: 0;
    cursor: pointer;
  }
  .footer__nav-col h4 .arrow {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid #aab7c6;
    border-bottom: 2px solid #aab7c6;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    border-radius: 0.04rem;
    margin-bottom: 0.2rem;
  }
  .footer__nav-col ul {
    display: none;
    margin-top: 0;
    padding-bottom: 1rem;
    white-space: normal;
  }
  .footer__nav-col.active h4 .arrow {
    transform: rotate(-135deg);
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    margin-bottom: 0;
  }
  .footer__nav-col.active ul {
    display: block;
    margin-top: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1.5rem;
  }
  .footer__legal br {
    display: none;
  }
  .footer__legal {
    order: 2;
  }
  .footer__policy {
    order: 1;
  }
  .footer__bottom {
    gap: 2.5rem;
  }
  .footer__subscribe::after {
    background: none;
  }
  .footer__subscribe {
    background: none;
    padding: 0;
  }
  .subscribe-box {
    display: grid;
    gap: 1.25rem;
    padding: 1.875rem;
  }
  .subscribe-box__form {
    display: grid;
    gap: 0.75rem;
  }
  .subscribe-box__form .input {
    width: 100%;
    background: #00000008;
    font-size: 1rem;
  }
}
.top-notification + .header {
  top: 2.3rem;
}
.top-notification {
  background-color: #ff7e33;
  color: #ffffff;
  padding: 0.438rem 0;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
}
.top-notification__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.top-notification__text {
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1rem;
}
.top-notification__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.top-notification__close:hover {
  opacity: 1;
}
.top-notification__close img {
  width: 1.5rem;
  height: 1.5rem;
}
.top-notification--hidden {
  margin-top: -3.125rem;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 48em) {
  .top-notification__text {
    width: 20.25rem;
    text-align: left;
    font-size: 0.875rem;
  }
  .top-notification + .header {
    top: 3rem;
  }
  .top-notification {
    padding: 0.375rem 1rem;
  }
  .top-notification__wrapper {
    gap: 0.688rem;
  }
  .top-notification__close img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.markets {
  margin: 0 0 7.5rem 0;
}
.markets__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.markets__info {
  max-width: 39.938rem;
}
.markets__title {
  margin-bottom: 1.5rem;
}
.markets__subtitle {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
.markets__cards {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}
.market-card {
  width: 18.938rem;
  height: 21.688rem;
  background-color: rgba(0, 133, 235, 0.1);
  border-radius: 2.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.market-card--russia {
  background-image: url("/local/templates/redesign_2026_ru/assets/img/flag/ru-map.svg");
  background-position: 101%;
}
.market-card--belarus {
  background-image: url("/local/templates/redesign_2026_ru/assets/img/flag/by-map.svg");
  background-position: 110%;
  background-size: 86%;
}
.market-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.market-card__flag {
  width: 2rem;
  height: auto;
}
.market-card__country {
  font-weight: 400;
  font-size: 1.125rem;
}
.market-card__city {
  font-size: 1.125rem;
  color: rgba(0, 133, 235, 1);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 0.375rem 1.25rem;
  border-radius: 1.875rem;
}

@media (max-width: 48em) {
  .markets {
    padding: 0 1rem;
    margin-bottom: 4rem;
  }
  .markets__subtitle {
    margin-bottom: 1.5rem;
  }
  .markets__wrapper {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .markets__cards {
    width: 100%;
    flex-direction: column;
  }
  .market-card {
    width: 100%;
    height: auto;
    min-height: 10rem;
    aspect-ratio: 16 /7;
    padding: 2rem;
  }
  .market-card__footer {
    display: flex;
    width: auto;
  }
  .market-card__city {
    font-weight: 400;
  }
  .market-card--russia {
    background-size: 64%;
    background-position: 101% 2%;
  }
  .market-card--belarus {
    background-position: 181% 52%;
    background-size: 72%;
  }
}

.ready-cloud-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  margin-bottom: 7.5rem;
}

.main-container {
  width: 100%;
  /* max-width: 82rem; */
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.header-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

.card-accent {
  width: 61rem;
  height: 24rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    /*url("/local/templates/redesign_2026_ru/assets/img/ready-cloud/image_51.png") center/cover no-repeat;*/
  border-radius: 2.5rem;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  transition: box-shadow 0.3s ease;
}
.card-accent:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.rect9-white {
  width: 1.375rem;
  height: 0.688rem;
  position: relative;
}
.rect9-white img {
  width: 100%;
  height: 100%;
}
.tag-text-blue {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 133, 235, 1);
}
.rect9-blue {
  width: 1.375rem;
  height: 0.688rem;
  position: relative;
}
.rect9-blue img {
  width: 100%;
  height: 100%;
}
.card-top {
  width: 20.6rem;
}
.accent-title {
  font-size: 1.625rem;
  margin: 1rem 0 0.75rem 0;
  width: 20.6rem;
  line-height: 1.2;
}
.accent-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}
.btn-accent {
  width: 14.75rem;
  height: 2.75rem;
  border: 1px solid #ffffff;
  border-radius: 6.25rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background: rgba(255, 255, 255, 0.2);
}
.accent-right-image {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: auto;
  height: auto;
  max-height: 14rem;
  max-width: 22rem;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}
.panel-preview {
  position: absolute;
  right: 5rem;
  top: 3.3rem;
  display: flex;
  align-items: center;
  gap: 0.313rem;
  z-index: 3;
}
.vector-icon {
  width: 2.438rem;
  height: 2.073rem;
}
.service-card-small {
  width: 18.9rem;
  height: 24rem;
  background: var(--bg-light);
  border-radius: 2.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.service-card-small:hover,
.security-block .card-mini:hover,
.security-block .card-btn:hover,
.support-card_update:hover {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.pro-cloud-block .card-glass:hover {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  color: var(--accent-link);
}
.pro-cloud-block .card-glass:hover .tag-text {
  color: var(--accent-link);
}
.footer-action {
  margin-top: -0.5rem;
  display: flex;
  justify-content: center;
}
.all-link {
  padding: 1.125rem 2.25rem;
  border-radius: 6.25rem;
  color: var(--accent-link);
  transition: all 0.2s;
  font-size: 1.25rem;
}
.all-link:hover {
  background: rgba(0, 0, 0, 0.03);
}
.btn-hover {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--accent-link);
  border-radius: 6.25rem;
  padding: 0 1.875rem;
  color: var(--accent-link);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  background: transparent;
}
.service-card-small:hover .btn-hover,
.pro-cloud-block .card-glass:hover .btn-hover,
.security-block .card-mini:hover .btn-hover,
.security-block .card-extra:hover .btn-hover,
.security-block .card-btn:hover .btn-hover,
.card-wide-glass:hover .btn-hover {
  opacity: 1;
  transform: translateY(0);
}
.btn-hover:hover {
  background: var(--accent-link);
  color: white;
}
.small-title {
  margin-top: 1rem;
}
.support-card {
  width: 40rem;
  height: 24rem;
  background: var(--bg-light);
  border-radius: 2.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.support-card:hover .btn--orange {
  background: #fe8c00;
}
.support-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.person-box {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 8.75rem;
  height: 12.25rem;
  z-index: 1;
  overflow: hidden;
}
.person-circle {
  position: absolute;
  bottom: 0;
  width: 8.75rem;
  height: 8.75rem;
  background: var(--accent-link);
  border-radius: 50%;
}
.ready-cloud-block .person-img.default {
  border-radius: 43%;
  background-image: url(/local/templates/redesign_2026_ru/assets/img/ready-cloud/image_118.png);
  background-repeat: no-repeat;
  background-size: 254%;
  background-position: 46% -16%;
}
.person-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease-out;
  opacity: 1;
}
/*.ready-cloud-block .support-card .person-img.hover {
  background: url(/local/templates/redesign_2026_ru/assets/img/ready-cloud/image_119.svg) bottom / contain no-repeat;
  opacity: 0;
  z-index: 3;
}
.ready-cloud-block .support-card:hover .person-img.hover {
  opacity: 1;
}

.ready-cloud-block .support-card:hover .person-img.default {
  opacity: 0;
}*/
/* .person-box::before {
  content: "👤";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 4rem;
  opacity: 0.3;
  pointer-events: none;
} */
.extra-cards {
  display: none;
  grid-column: 1 / -1;
  display: contents;
}
.extra-cards .service-card-small,
.extra-cards .support-card {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.extra-cards.is-active .service-card-small,
.extra-cards.is-active .support-card {
  display: flex;
}
.support-card_update,
.card-btn {
  border: 1px solid transparent;
}
.support-card_update.support-card .support-title {
  margin: 1rem 0 0.75rem 0;
}
.support-card_update.support-card .btn-hover {
  width: fit-content;
}
.support-card_update.support-card:hover .btn-hover {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 48em) {
  .ready-cloud-block {
    margin-bottom: 4rem;
  }
  .ready-cloud-block .person-box {
    bottom: 0.6rem;
  }
  .card-accent {
    height: 34.51rem;
    justify-content: normal;
    gap: 1rem;
    border-radius: 2rem;
  }
  .btn-accent {
    width: 100%;
  }
  .support-card {
    height: 23.75rem;
    padding: 1.5rem;
    border-radius: 2rem;
  }
  .service-card-small {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    padding: 1.5rem;
  }
  .person-circle {
    width: 7.5rem;
    height: 7.5rem;
  }
  .service-cards {
    gap: 1rem;
  }
  .service-card-small .btn-hover {
    display: none;
  }
  .accent-right-image {
    max-height: 18.063rem;
    max-width: 22.938rem;
    right: -3rem;
    bottom: 0;
  }
  .panel-preview {
    position: absolute;
    right: 3rem;
    top: 17.3rem;
    font-size: 0.875rem;
  }
  .support-content {
    order: 2;
    width: 100%;
  }
  .support-card .btn--orange {
    width: 100%;
    order: 3;
  }
  .person-box {
    order: 1;
    position: relative;
    right: 0;
    bottom: 1rem;
    width: 7.5rem;
    height: 10.5rem;
  }
  /* .person-img {
    background: url(/local/templates/redesign_2026_ru/assets/img/ready-cloud/image_120.svg);
  } */
  .tag + .small-title {
    margin-top: 2rem;
  }
  .small-title {
    margin-top: 0rem;
  }
  .support-card_update.support-card {
    height: auto;
  }
  .support-card_update.support-card .btn-hover {
    display: none;
  }
  .support-card_update.support-card .support-title {
    margin-top: 2rem;
  }
}

.security-block {
  margin-bottom: 7.5rem;
}
.security-block__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.security-block .grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.security-block .card {
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Размеры карточек */
.security-block .card-mini {
  width: 18.9375rem;
  height: 22rem;
  border: 1px solid transparent;
  background: var(--bg-light);
  padding: 2rem;
  justify-content: space-between;
}
.security-block .card-wide {
  width: 40rem;
  height: 22rem;
  background: var(--bg-light);
  padding: 2rem;
  justify-content: space-between;
}

.security-block .card-accent {
  width: 40rem;
  height: 22rem;
  background: #231a17;
  padding: 2rem;
  justify-content: center;
}

/* Теги */
.security-block .tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.security-block .tag img {
  width: 1.375rem;
  height: 0.688rem;
}

.security-block .tag-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-link);
}

.security-block .card:hover .btn-mini-action {
  opacity: 1;
}

/* Стили для специальных карточек с фоном */
.security-block .card-dark {
  /* background: #1a1a1a; */
  background:
    linear-gradient(283.87deg, rgba(35, 26, 23, 0) 50.18%, #231a17 86.41%),
    url(/local/templates/redesign_2026_ru/assets/img/security/bg-card__dark.png) center/cover no-repeat;
  background-size: 150%;
  color: #fff;
  justify-content: space-between;
}
.security-block .person-img.default {
  border-radius: 44%;
  background-image: url(/local/templates/redesign_2026_ru/assets/img/security/image_120.png);
  background-repeat: no-repeat;
  background-size: 141%;
  background-position: 54% 21%;
}
/*.security-block .card-support .person-img.hover {*/
/*  background: url(/local/templates/redesign_2026_ru/assets/img/security/image_120.png) bottom / contain no-repeat;*/
/*  opacity: 0;*/
/*  z-index: 3;*/
/*}*/
/*.security-block .card-support:hover .person-img.hover {*/
/*  opacity: 1;*/
/*}*/
/*.security-block .card-support:hover .person-img.default {*/
/*  opacity: 0;*/
/*}*/

.security-block .card-extra_foto {
  background:
    linear-gradient(287.61deg, rgba(20, 12, 10, 0) 40.81%, #140c0a 70.54%),
    url(/local/templates/redesign_2026_ru/assets/img/security/foto.png) center/cover no-repeat;
  background-size: 180%;
  background-position: 13% 50%;
}

.security-block .card-extra_foto h3 {
  width: 28.563rem;
}
.security-block .card-extra_foto p {
  position: relative;
}
.security-block .card-extra_foto p img {
  position: absolute;
  width: 5.594rem;
  height: 0.55em;
  bottom: -0.4rem;
  left: 10.1rem;
}
.security-block .card-dark h3,
.security-block .card-dark p {
  color: #fff;
}

.security-block .card-dark .tag-text {
  color: #fff;
}
.ul-line_dark {
  margin-left: 4.863rem;
}
.vector-line_dark {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  width: 3.862rem;
  height: 1.687rem;
}
/* Карточка с сотрудником */
.security-block .card-support {
  width: 40rem;
  height: 22rem;
  background: var(--bg-light);
  padding: 2rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.security-block .support-text {
  width: 23.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  height: 100%;
}

.security-block .person-container {
  position: relative;
  width: 8.75rem;
  height: 12.25rem;
}
.security-block .person-box {
  position: relative;
  left: 0;
  bottom: 0;
}

.security-block .person-image {
  position: absolute;
  bottom: 0;
  width: 8.75rem;
  z-index: 2;
}

/* Логика раскрытия */
.security-block .card-extra {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.security-block .card-extra.show {
  display: flex;
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.security-block .footer-action {
  display: flex;
  justify-content: center;
}

/* Адаптив */
@media (max-width: 48rem) {
  .security-block {
    margin-bottom: 4rem;
  }
  .security-block .security-block {
    width: 100%;
    padding: 0 2rem;
  }
  .security-block .grid-container {
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }
  .security-block .card-mini,
  .security-block .card-wide,
  .security-block .card-accent,
  .security-block .card-support {
    width: 100%;
    max-width: 40rem;
  }
  .vector-line_dark {
    display: none;
  }
  .ul-line_dark {
    margin-left: 0;
  }
  .security-block .card-mini,
  .security-block .card-wide {
    height: auto;
  }
  .card .btn-hover {
    display: none;
  }
  .footer-action {
    margin-top: -1rem;
  }
  .security-block .card-dark {
    background-size: 180%;
  }
  .security-block .card-accent {
    padding: 1.5rem;
  }
  .security-block .card {
    border-radius: 2rem;
  }
  .security-block .card-support {
    display: grid;
    gap: 1rem;
    height: auto;
    padding: 1.5rem;
  }
  .security-block .person-box {
    order: 1;
    bottom: 1rem;
  }
  .security-block .support-text {
    order: 2;
    width: auto;
  }
  .security-block .btn--orange {
    width: 100%;
  }
  .security-block .card-extra.show {
    gap: 2.5rem;
  }
  .security-block .card-extra_foto h3 {
    width: auto;
  }
  .security-block .card-extra_foto p img {
    left: 9rem;
  }
  .grid-container .card:nth-last-of-type(1n) {
    order: 2;
  }
  .grid-container .card:nth-child(2n) {
    order: 1;
  }
  .grid-container .card:nth-child(3n) {
    order: 3;
  }
  .grid-container .card:nth-child(4n) {
    order: 4;
  }
}

.pro-cloud-block {
  background: #E2F4FE;
  border-radius: 4rem;
  padding: 4rem 0;
  color: #000;
  transition: all 0.2s ease;
  margin-bottom: 7.5rem;
}
.pro-cloud-block .tag img {
  width: 1.375rem;
  height: 0.688rem;
}
.color-white {
  filter: brightness(0) invert(1);
}
.pro-cloud-block .card-glass:hover .color-white {
  filter: brightness(0) saturate(100%) invert(38%) sepia(97%) saturate(3033%)
    hue-rotate(190deg) brightness(98%) contrast(106%);
}
.pro-block__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.pro-block__content .all-link:hover {
  background: white;
  color: var(--accent-link);
}
.pro-cloud-block .header-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pro-cloud-block .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 82rem;
}

.pro-cloud-block .card {
  border-radius: 2.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.pro-cloud-block .card-glass {
  width: 18.9375rem;
  height: 22rem;
  background: #F6FBFE;
  border: 1px solid transparent;
  backdrop-filter: blur(0.3125rem);
  -webkit-backdrop-filter: blur(0.3125rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.pro-cloud-block .card-enterprise {
  width: 40rem;
  height: 22rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/local/templates/redesign_2026_ru/assets/img/pro/Fade.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.pro-cloud-block .card-enterprise h3 {
  width: 28.563rem;
  color: #fff;
}
.pro-cloud-block .card-white {
  width: 40rem;
  height: 22rem;
  background: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  gap: 2rem;
}
.pro-cloud-block .card-white .btn--orange {
  width: fit-content;
}
.pro-cloud-block .card-wide-glass {
  width: 39.875rem;
  height: 20rem;
  background: #ffffff33;
  backdrop-filter: blur(0.3125rem);
  -webkit-backdrop-filter: blur(0.3125rem);
}

.pro-cloud-block .card-extra {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.pro-cloud-block .card-extra.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pro-cloud-block .tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.pro-cloud-block .tag-text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent-link);
}

.pro-cloud-block .card-white .tag-text {
  color: var(--brand-blue);
}

.pro-cloud-block .person-box {
  position: relative;
  width: 8.75rem;
  height: 12.25rem;
  flex-shrink: 0;
  left: 0;
  bottom: -2rem;
}

.pro-cloud-block .person-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.pro-cloud-block .person-img.default {
  opacity: 1;
  border-radius: 43%;
  background-image: url(/local/templates/redesign_2026_ru/assets/img/pro/image_118.png);
  background-repeat: no-repeat;
  background-size: 319%;
  background-position: 52% -4%;
}

/*.pro-cloud-block .person-img.hover {
  opacity: 0;
  background: url(/local/templates/redesign_2026_ru/assets/img/pro/image_119.png) bottom / contain no-repeat;
}

.pro-cloud-block .person-box:hover .person-img.default {
  opacity: 0;
}

.pro-cloud-block .person-box:hover .person-img.hover {
  opacity: 1;
}*/

.pro-cloud-block .support-text-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 23rem;
}

.pro-cloud-block .support-text-wrapper h3 {
  margin: 0;
}

.pro-cloud-block .card-wide-glass h3,
.pro-cloud-block .card-wide-glass p {
  color: #ffffff;
}

.pro-cloud-block .card-wide-glass p {
  margin-top: 0.75rem;
}

.pro-cloud-block .card-extra.card-glass,
.pro-cloud-block .card-extra.card-wide-glass {
  backdrop-filter: blur(0.3125rem);
  background: #ffffff33;
}
.pro-cloud-block .card-extra.card-glass:hover,
.pro-cloud-block .card-extra.card-wide-glass:hover {
  backdrop-filter: blur(0);
  background: white;
}
.pro-cloud-block .card-wide-glass:hover {
  background: white;
}
.pro-cloud-block .card-wide-glass .btn-hover {
  width: fit-content;
}
.pro-cloud-block .card-wide-glass:hover h3,
.pro-cloud-block .card-wide-glass:hover p {
  color: var(--accent-link);
}
.pro-cloud-block .all-link {
  color: white;
}
.pro-cloud-block .card-wide-glass:hover .tag-text {
  color: var(--accent-link);
}
.pro-cloud-block .card-wide-glass:hover .color-white {
  filter: brightness(0) saturate(100%) invert(38%) sepia(97%) saturate(3033%)
    hue-rotate(190deg) brightness(98%) contrast(106%);
}
@media (max-width: 48rem) {
  .pro-cloud-block {
    padding: 2rem 0;
    border-radius: 2rem;
    margin-bottom: 4rem;
  }
  .pro-cloud-block .card-white {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    gap: 1rem;
    display: grid;
    gap: 1rem;
    height: auto;
    padding: 1.5rem;
  }
  .pro-cloud-block .person-box {
    order: 1;
    position: relative;
    right: 0;
    bottom: 1rem;
    width: 7.5rem;
    height: 10.5rem;
  }
  .pro-cloud-block .support-text-wrapper {
    max-width: 100%;
    order: 2;
  }
  .pro-block__content {
    padding: 0 1rem;
  }
  .pro-cloud-block .card-glass {
    width: 100%;
    height: fit-content;
    padding: 1.5rem;
  }
  .pro-cloud-block .card-enterprise {
    padding: 1.5rem;
  }
  .pro-cloud-block .card-enterprise h3 {
    width: auto;
  }
  .pro-cloud-block .card-wide-glass {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
  }
  .pro-cloud-block .support-text-wrapper {
    order: 2;
    width: auto;
    gap: 1.5rem;
  }
  .pro-cloud-block .support-text-wrapper .btn--orange {
    width: 100%;
  }
}

.hosting-section {
  margin-bottom: 7.5rem;
}
.hosting-section .hosting-section_content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hosting-section .cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hosting-section .card {
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    opacity 0.4s ease;
}

.hosting-section .card-accent-search {
  width: 61rem;
  height: 22rem;
  background:
    linear-gradient(0deg, rgba(6, 23, 49, 0.7) 0%, rgba(0, 0, 0, 0.168) 100%),
    url(/local/templates/redesign_2026_ru/assets/img/hosting/card-foto-bg.jpg);
  background-size: 120%;
  background-position: 40% 60%;
  /* background-size: cover; */
  /* background-position: center; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 2rem 3.5rem;
  text-align: center;
}

.hosting-section .card-accent-search::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #061731 10.88%, rgba(9, 30, 63, 0) 100%);
  z-index: 1;
}

.hosting-section .search-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.125rem;
}
.hosting-section .search-group .btn-accent {
  width: fit-content;
  padding: 0.75rem 1.875rem;
}
.hosting-section .search-titles h3 {
  color: #ffffff;
  text-shadow: 0px 0.25rem 2.25rem rgba(26, 54, 101, 0.85);
  margin-bottom: 0.5rem;
}

.hosting-section .search-titles p {
  color: #ffffff;
}

.hosting-section .search-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 50.8125rem;
}

.hosting-section .search-bar {
  flex: 1;
  width: 41.375rem;
  height: 2.875rem;
  background: #ffffff;
  border-radius: 3.5rem;
  display: flex;
  align-items: center;
  padding: 0.3125rem 1.875rem;
}

.hosting-section .search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
  color: #000;
  background: transparent;
}

.hosting-section .search-bar input::placeholder {
  opacity: 0.3;
  color: #000;
}

.hosting-section .card-mini {
  width: 18.9375rem;
  height: 22rem;
  background: var(--bg-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hosting-section .card-wide {
  width: 40rem;
}

.hosting-section .tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.hosting-section .tag-rect {
  width: 1.375rem;
  height: 0.6875rem;
  background: var(--accent-link);
}

.hosting-section .tag-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-link);
}

.hosting-section .btn-reveal {
  opacity: 0;
  transform: translateY(0.625rem);
  border: 0.0625rem solid var(--accent-link);
  color: var(--accent-link);
  background: transparent;
  padding: 0.75rem 1.875rem;
  border-radius: 6.25rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
  min-width: 160px;
}

.hosting-section .card:hover .btn-reveal {
  opacity: 1;
  transform: translateY(0);
}

.hosting-section .card-support {
  width: 40.125rem;
  height: 22rem;
  background: var(--bg-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hosting-section .support-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 23rem;
  z-index: 2;
}

.hosting-section .support-info h3 {
  margin: 0 0 1rem 0;
}

.hosting-section .person-img {
  position: absolute;
  bottom: 0;
  width: 8.75rem;
  z-index: 2;
  object-fit: contain;
}
.hosting-section .card-extra {
  display: none;
}
.hosting-section .card-extra.show {
  display: flex;
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hosting-section .all-services-btn {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-link);
  text-decoration: none;
  cursor: pointer;
  padding: 0.75rem 2rem;
  border-radius: 3rem;
  transition: background 0.2s;
  display: inline-block;
}
.hosting-section .all-services-btn:hover {
  background: rgba(0, 133, 235, 0.05);
}
.hosting-section .card-mini .btn-reveal {
  width: 100%;
}
.hosting-section .card-support .btn--orange {
  width: fit-content;
}
.hosting-section .card-support:hover .person-img.default {
  opacity: 0;
}
.hosting-section .card-support:hover .person-img.hover {
  opacity: 1;
}
.hosting-section .person-img.default {
  opacity: 1;
  background: url(/local/templates/redesign_2026_ru/assets/img/hosting/image_118.png) bottom / contain no-repeat;
}
.hosting-section .person-img.hover {
  opacity: 0;
  background: url(/local/templates/redesign_2026_ru/assets/img/hosting/image_119.png) bottom / contain no-repeat;
}
.security-block .card-p {
  margin-top: 0.75rem;
}
@media (max-width: 48rem) {
  .hosting-section .person-img {
    width: 100%;
    height: 100%;
  }
  .hosting-section {
    width: 100%;
    margin-bottom: 4rem;
  }
  .cards-grid {
    width: 100%;
    justify-content: center;
  }
  .card-accent {
    padding: 1.5rem;
  }
  .card-accent-search,
  .card-wide,
  .card-support {
    width: 100%;
    max-width: 100%;
  }
  .card-mini {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .search-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .card-support {
    flex-direction: column;
    height: auto;
    min-height: 20rem;
  }
  .btn-reveal {
    opacity: 1;
    transform: translateY(0);
  }
  .search-bar {
    width: 100%;
  }
  .btn-check {
    width: 100%;
  }
  .support-info {
    max-width: 100%;
  }
  .hosting-section .search-bar {
    width: fit-content;
    display: grid;
    gap: 0.313rem;
  }
  .hosting-section .card-accent-search {
    width: fit-content;
    padding: 1.5rem;
    height: fit-content;
    text-align: left;
    border-radius: 2rem;
  }
  .hosting-section .search-group {
    width: 100%;
  }
  .hosting-section .search-group .btn-accent {
    width: 100%;
  }
  .hosting-section .search-titles h3 {
    margin-bottom: 1rem;
  }
  .hosting-section .search-content {
    gap: 2.125rem;
  }
  .hosting-section .card-mini {
    height: fit-content;
    padding: 1.5rem;
  }
  .hosting-section .card-mini .btn-reveal {
    display: none;
  }
  .hosting-section .tag {
    margin-bottom: 2rem;
  }
  .pro-cloud-block .tag {
    margin-bottom: 2rem;
  }
  .security-block .tag {
    margin-bottom: 2rem;
  }
  .hosting-section .support-info {
    order: 2;
  }
  .hosting-section .support-info h3 {
    margin: 0;
  }
  .hosting-section .cards-grid {
    gap: 1rem;
  }
  .pro-cloud-block .services-grid {
    gap: 1rem;
  }
  .hosting-section .support-info {
    gap: 1.5rem;
  }
  .hosting-section .card-support {
    width: fit-content;
    padding: 1.5rem;
    height: 100%;
    gap: 1rem;
  }
  .security-block .card-mini {
    padding: 1.5rem;
  }
  .security-block .card-wide {
    padding: 1.5rem;
  }

  .hosting-section .card-support .btn--orange {
    width: 100%;
  }
}

.ai-block {
  margin-bottom: 7.5rem;
  display: flex;
  justify-content: center;
}
.ai-container {
  overflow: hidden;
  position: relative;
  background: url(/local/templates/redesign_2026_ru/assets/img/ai/image.png);
  background-size: cover;
  background-position: center;
  border-radius: 2.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  isolation: isolate;
  transition: all 0.3s ease;
}
.ai-solid-sphere {
  position: absolute;
  width: 28.25rem;
  height: 28.25rem;
  right: -1.875rem;
  top: 2.5rem;
  z-index: 1;
  pointer-events: none;
}
.ai-bg-sphere {
  position: absolute;
  width: 28.25rem;
  height: 28.25rem;
  right: -1.875rem;
  top: 2.5rem;
  background: radial-gradient(
    circle,
    rgba(244, 119, 33, 0.18),
    rgba(0, 133, 235, 0.06)
  );
  filter: blur(0.4375rem);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.ai-prompt-title {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.1;
  z-index: 3;
  position: relative;
}

.ai-input-wrapper {
  width: 40.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 4;
  position: relative;
}

.ai-search-bar {
  width: 100%;
  height: 3.875rem;
  background: #ffffff;
  border-radius: 3.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.9375rem 0 2.25rem;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.ai-search-bar textarea {
  width: 90%;
  font-size: 1.125rem;
  height: 1.463rem;
  background: white;
}

.ai-search-bar textarea::placeholder {
  opacity: 0.4;
}

.ai-send-btn {
  width: 2rem;
  height: 2rem;
  background: #f47721;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  padding: 0;
}

.ai-send-btn:hover {
  transform: scale(1.05);
  background: #e06610;
}

.ai-send-img {
  width: 0.875rem;
  height: 0.875rem;
  display: block;
}

.ai-send-btn.hidden-send {
  display: none;
}

.ai-tags-container {
  width: 40.25rem;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 0.625rem;
}

.ai-tag {
  background: #ffffff;
  padding: 0.75rem 1.25rem 0.75rem 1.5rem;
  border-radius: 1.5rem 1.5rem 1.5rem 0rem;
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  border: 1px solid white;
  backdrop-filter: blur(0.4375rem);
  transition: all 0.2s ease;
}
.ai-tag:hover {
  border-color: white;
  color: #000;
  background: #ffffff80;
}

.answer-block {
  width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  animation: fadeIn 0.2s ease;
  margin-top: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.answer-body {
  padding: 0;
}

.answer-greeting {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: #1a1a1a;
}

.answer-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.answer-list {
  list-style: none;
  margin: 0 0 1.25rem;
}

.answer-list li {
  padding-left: 1.35rem;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.4;
}
.answer-list li a {
  text-decoration: underline !important;
}
.answer-list li:last-child {
  margin-bottom: 0;
}

.answer-list li::before {
  content: "•";
  position: absolute;
  left: 0.35rem;
  color: #000000;
  font-weight: 500;
  font-size: 1.125rem;
}

.ai_slider {
  overflow: visible;
  position: relative;
  margin: 1.25rem 0 0;
}

.carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.tariffs-cards-row {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.tariff-card {
  width: 15.625rem;
  background: #ffffff;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.card-title {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #000000;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.price-summary {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.625rem;
}

.price-value {
  font-family: "Onest";
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 140%;
  color: #0085eb;
}

.price-period {
  font-family: "Onest";
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #0085eb;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.feature-row {
  display: flex;
  /* align-items: baseline; */
  position: relative;
  width: 100%;
  gap: 0.5rem;
}

.feature-label {
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #899aad;
  white-space: nowrap;
  flex-shrink: 0;
}

.feature-line {
  flex: 1;
  height: 0.0625rem;
  background: rgba(0, 0, 0, 0.1);
  min-width: 1rem;
  position: relative;
  bottom: -0.8rem;
}

.feature-value {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.order-btn {
  display: block;
  background: #f47721;
  color: white;
  text-align: center;
  padding: 0.75rem 1.875rem;
  border-radius: 6.25rem;
  font-family: "Onest";
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 122%;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  margin-top: auto;
}

.order-btn:hover {
  background: #e06610;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 2.5rem;
  background: #ffffff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-radius: 6.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  background: #f5f5f5;
  transform: translateY(-50%) scale(1.02);
}

.carousel-arrow-left {
  left: 0.5rem;
}

.carousel-arrow-right {
  right: 0.5rem;
}

.carousel-arrow svg {
  width: 1rem;
  height: 1rem;
}

.carousel-arrow.hidden {
  display: none;
}

.service-link {
  margin: 0.625rem 0 0 0;
  font-size: 1.125rem;
  line-height: 1.4;
}

.service-link a {
  color: var(--accent-link);
}

.service-link a:hover {
  text-decoration: underline;
}

.answer-footer-section {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.footer-buttons-row {
  display: grid;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}

.footer-tag {
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
  width: fit-content;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  border: 0.0625rem solid #ffffff;
  backdrop-filter: blur(0.4375rem);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-tag:hover {
  border-color: white;
  color: #000;
  background: #ffffff80;
}

.footer-textarea-block {
  margin-top: 0.5rem;
}

.inline-textarea-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border-radius: 3.5rem;
  padding: 0.9375rem 0.9375rem 0.9375rem 2.25rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.05);
}

.inline-textarea-wrapper textarea {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.125rem;
  background: transparent;
  height: 1.4625rem;
  resize: none;
}

.inline-textarea-wrapper textarea::placeholder {
  opacity: 0.4;
}

.small-send-btn {
  width: 2rem;
  height: 2rem;
  background: #f47721;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  padding: 0;
}

.small-send-btn:hover {
  transform: scale(1.05);
  background: #e06610;
}

.small-send-img {
  width: 0.875rem;
  height: 0.875rem;
  display: block;
}

.fallback-answer .emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}
.fallback-answer h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #333;
}
.fallback-answer p {
  color: #666;
  margin-bottom: 1rem;
}
.suggestions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.suggestions-tags .ai-tag {
  border-radius: 2rem;
  background: white;
}
@media (max-width: 48rem) {
  .ai-block {
    width: 100%;
    margin-bottom: 4rem;
    padding: 0;
  }
  .ai-container {
    border-radius: 2rem;
    padding: 1.5rem;
    gap: 2rem;
    min-height: auto;
    width: 100%;
    margin: 0;
  }
  .ai-solid-sphere {
    max-height: 18rem;
    opacity: 0.4;
    top: auto;
    bottom: -8rem;
    right: 2rem;
    width: 80%;
  }
  .ai-prompt-title {
    font-size: 1.625rem;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .ai-input-wrapper {
    width: 100%;
    gap: 1.5rem;
  }
  .ai-search-bar {
    display: grid;
    gap: 1rem;
    height: fit-content;
    width: fit-content;
    padding: 1rem;
    border-radius: 1rem;
    justify-content: space-between;
    justify-items: end;
  }
  .ai-search-bar textarea {
    width: 18.6rem;
    font-size: 1rem;
  }
  .ai-search-bar textarea::placeholder {
    opacity: 1;
    color: #aab7c6;
  }
  .ai-tags-container {
    width: 100%;
    gap: 0.625rem;
    position: relative;
    z-index: 2;
  }
  .ai-tag {
    font-size: 1rem;
    font-weight: 400;
    background: #ffffff;
    border: 0.0625rem solid #ffffff;
    backdrop-filter: blur(0.4375rem);
    display: flex;
    align-items: center;
    width: fit-content;
  }
  .answer-block {
    margin-top: 0;
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .answer-greeting {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }
  .answer-text {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }
  .answer-block .ai-search-bar {
    width: 85% !important;
    margin-left: auto;
    margin-right: 0;
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
    min-height: auto;
    height: auto;
  }
  .answer-block .ai-search-bar textarea {
    font-size: 0.875rem;
    height: auto;
    min-height: 2rem;
    padding: 0.25rem 0;
    overflow-y: auto;
  }
  .answer-list {
    margin: 0 0 1rem;
    padding: 0;
    text-align: left;
  }
  .answer-list li {
    font-size: 1rem;
    padding-left: 1rem;
    text-align: left;
  }
  .answer-list li::before {
    font-size: 0.875rem;
    left: 0.25rem;
  }
  .ai_slider {
    margin: 1rem 0 0;
  }
  .tariff-card {
    width: 13.125rem;
    padding: 1rem;
    gap: 1rem;
  }
  .card-title {
    font-size: 1rem;
  }
  .price-value {
    font-size: 1rem;
  }
  .price-period {
    font-size: 0.875rem;
  }
  .order-btn {
    padding: 0.625rem 0.75rem;
    font-size: 1rem;
  }
  .carousel-arrow svg {
    width: 1rem;
    height: 1rem;
  }
  .service-link {
    font-size: 1rem;
    margin-top: 2.375rem;
    text-align: left;
  }
  .service-link a {
    font-size: 0.875rem;
  }
  .answer-footer-section {
    margin-top: 2.5rem;
  }
  .footer-buttons-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    width: 100%;
  }
  .footer-textarea-block {
    margin-top: 0;
  }
  .footer-tag {
    width: 100%;
    min-width: auto;
    max-width: none;
    flex: none;
    font-size: 1rem;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    border-radius: 1rem;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    border: 0.0625rem solid #eef2f6;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
  }
  .footer-tag:hover {
    font-weight: 400;
  }
  .inline-textarea-wrapper {
    display: grid;
    gap: 1.5rem;
    height: fit-content;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    justify-content: space-between;
    justify-items: end;
  }
  .inline-textarea-wrapper textarea {
    width: 18.6rem;
    height: 100%;
    font-size: 1rem;
    height: 1.463rem;
  }
  .inline-textarea-wrapper textarea::placeholder {
    opacity: 1;
    color: #aab7c6;
  }
  .small-send-btn {
    width: 2rem;
    height: 2rem;
  }
  .small-send-img {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.tariffs-swiper {
  overflow: visible !important;
  margin: 1.25rem 0 0;
  padding: 0.25rem 0 0.5rem;
  position: relative;
}

.tariffs-swiper .swiper-wrapper {
  padding-bottom: 0.25rem;
}

.tariffs-swiper .swiper-slide {
  width: auto !important;
  height: auto;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.25rem;
  height: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.swiper-button-prev-custom {
  left: 0.1rem;
}
.swiper-button-next-custom {
  right: 0.1rem;
}
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: #f5f5f5;
  transform: translateY(-50%) scale(1.05);
}
.swiper-button-prev-custom svg,
.swiper-button-next-custom svg {
  width: 1rem;
  height: 1rem;
}
.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
.ai-search-bar.answer-mode {
  border-radius:2rem 0rem 2rem 2rem;
}
@media (max-width: 48em) {
  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    display: none;
  }
  .tariff-card {
    width: 13rem;
    padding: 1rem;
  }
  .ai-tags-container {
    overflow: visible;
  }
  .ai-search-bar.answer-mode {
    border-radius:  1rem 0rem 1rem 1rem;
}
}

.cookies-dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 505;
  display: none;
  height: 100%;
  width: 100%;
  color: #000;
  font: 300 18px/22px proxima_nova,Arial,Helvetica,sans-serif;
}
.cookies-dialog::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,51,80,.7);
  content: "";
}
.cookies-dialog__holder {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  overflow: auto;
  width: 100%;
}
.cookies-dialog__form {
  border-radius: 2.5rem;
  position: relative;
  margin: 128px 0;
  max-width: 1150px;
  padding: 100px 70px 80px;
  width: 100%;
  background-color: #fff;
}
.cookies-dialog__close {
  position: absolute;
  top: 35px;
  right: 40px;
  height: 16px;
  width: 16px;
  background: url(/local/templates/redesign_2026_ru/assets/img-modal/Close.svg) no-repeat;
  cursor: pointer;
}
.cookies-dialog__title {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 32px;
  color: #33394c;
  font-weight: 600;
  line-height: 38px;
}
.cookies-dialog__annotation {
  margin-bottom: 32px;
}
.cookies-dialog__settings {
  margin-bottom: 51px;
}
.cookies-setting {
  display: flex;
}
.cookies-setting:first-of-type {
  margin-top: 0;
}
.cookies-setting__title {
  flex-shrink: 0;
  padding-right: 12px;
  width: 130px;
  font-weight: 700;
}
.cookies-setting__annotation {
  flex-grow: 1;
}
.cookies-setting__toggle {
  flex-shrink: 0;
  padding-right: 40px;
  padding-left: 70px;
  width: 152px;
}
.toggle {
  position: relative;
}
.toggle__field {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
}
.toggle__label {
  transition: border-color .2s;
  position: relative;
  border-radius: 12px;
  border: 1px solid #c4c4c4;
  display: block;
  height: 24px;
  width: 42px;
  cursor: pointer;
}
.toggle__field:checked ~ .toggle__label::before {
  left: 19px;
  background-color: #f07622;
}
.toggle__label::before {
  transition: background-color .2s,left .3s;
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: #c4c4c4;
  content: "";
}
.toggle__field:checked ~ .toggle__label {
  border-color: #f07622;
}
.cookies-dialog__button {
  margin-left: 130px;
  font-size: 18px;
  font-weight: 600;
}
