@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* общие настройки */

:root {
  --dark-gray: #272727;
  --orange: #e15d0a;
  --beige: #edebe5;
  --gray-background: #f5f5f5;
  --white: #ffffff;
  --gray: #d2d2d2;
  --main-gradient: linear-gradient(90deg, #ffffff 0%, #e15d0a 87%);
  --low-gray: #ffffff20;
}

body {
  font-family: "Mulish", Arial, sans-serif;
  background: var(--gray-background);
}


.title {
  font-size: 50px;
  font-weight: 500 !important;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-left: 40px;
  text-align: left !important;
}

.font-tektur {
  font-family: "Tektur", "Mulish", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  color: var(--dark-gray);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* общие настройки */

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding 0.25s ease;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* Когда есть прокрутка — делаем шапку заметной */
body.has-scrolled .header {
  background: rgba(245, 245, 245, 0.85);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(140%) blur(6px);
}

/* Делает шапку более «крупной» после начала скролла */
body.has-scrolled .header__content {
  padding-top: 7px;
  padding-bottom: 7px;
}

.header__logo {
  width: 210px;
  height: 50px;
}

.header__nav .header__menu {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.header__nav .header__menu li {
  list-style: none;
}

.header__menu-link {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  transition: color 0.2s ease;
}

.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.25s ease;
}

.header__menu-link:hover {
  color: var(--orange);
}

.header__menu-link:hover::after {
  width: 100%;
}

/* === ВЫПАДАЮЩЕЕ МЕНЮ НАПРАВЛЕНИЙ === */

.header__menu-item--dropdown {
  position: relative;
}

.header__menu-link--dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__dropdown-arrow {
  transition: transform 0.3s ease;
  color: var(--dark-gray);
}

.header__menu-item--dropdown:hover .header__dropdown-arrow {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.header__menu-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__dropdown-content {
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  min-width: 320px;
  position: relative;
  overflow: hidden;
}

.header__dropdown-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.header__dropdown-link:last-child {
  margin-bottom: 0;
}

.header__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header__dropdown-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.header__dropdown-link:hover .header__dropdown-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.header__dropdown-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(1000%)
    hue-rotate(180deg) brightness(95%) contrast(85%);
  transition: filter 0.3s ease;
}

.header__dropdown-link:hover .header__dropdown-icon img {
  filter: none;
}

.header__dropdown-text {
  flex: 1;
}

.header__dropdown-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0 0 4px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.header__dropdown-link:hover .header__dropdown-text h3 {
  color: var(--orange);
}

.header__dropdown-text p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.4;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.header__dropdown-link:hover .header__dropdown-text p {
  opacity: 1;
}

.header__button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--dark-gray);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: 0 0 0 2px var(--low-gray) inset;
  transition: background-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
  position: relative;
  overflow: hidden;
  padding-right: 36px;
  will-change: transform;
}

.header__button-link:hover {
  background: linear-gradient(90deg, #232323 0%, #2b2b2b 45%, #373737 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 0 0 2px var(--low-gray) inset;
}

.header__button-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 85%
  );
  transform: translateX(-105%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.header__button-link:hover::before {
  transform: translateX(0);
}

/* Появляющаяся стрелка */
.header__button-link::after {
  content: "\2192";
  /* → */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  z-index: 1;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__button-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.header__button-link {
  position: relative;
}

.header__button-link,
.header__button-link * {
  z-index: 1;
}

.header__button {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* === БУРГЕР МЕНЮ === */

/* Бургер кнопка */
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header__burger:hover {
  background: rgba(225, 93, 10, 0.1);
}

.header__burger-icon {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
}

.header__burger:hover .header__burger-icon {
  filter: brightness(1.2);
}

.header__burger.burger-active {
  background: rgba(225, 93, 10, 0.15);
}

.header__burger.burger-active .header__burger-icon {
  filter: brightness(1.3);
}

/* Мобильное меню */
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(245, 245, 245, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  display: none;
}

.header__mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header__mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 40px 20px;
  gap: 60px;
}

.header__mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  align-items: center;
}

.header__mobile-menu-link {
  font-size: 32px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.header__mobile-menu-link:hover {
  color: var(--orange);
}

/* === МОБИЛЬНОЕ ВЫПАДАЮЩЕЕ МЕНЮ === */

.header__mobile-menu-item--dropdown {
  position: relative;
}

.header__mobile-menu-link--dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  gap: 12px;
}

.header__mobile-dropdown-arrow {
  transition: transform 0.2s ease;
  color: var(--dark-gray);
}

.header__mobile-menu-item--dropdown.active .header__mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.header__mobile-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.15s ease-out;
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border-radius: 12px;
  margin: 0;
  padding: 0;
  height: 0;
}

.header__mobile-menu-item--dropdown.active .header__mobile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin: 16px 0;
  padding: 20px;
  height: auto;
}

.header__mobile-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 6px;
}

.header__mobile-dropdown-link:last-child {
  margin-bottom: 0;
}

.header__mobile-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header__mobile-dropdown-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.header__mobile-dropdown-link:hover .header__mobile-dropdown-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.header__mobile-dropdown-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(1000%)
    hue-rotate(180deg) brightness(95%) contrast(85%);
  transition: filter 0.3s ease;
}

.header__mobile-dropdown-link:hover .header__mobile-dropdown-icon img {
  filter: none;
}

.header__mobile-dropdown-text {
  flex: 1;
}

.header__mobile-dropdown-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0 0 4px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.header__mobile-dropdown-link:hover .header__mobile-dropdown-text h3 {
  color: var(--orange);
}

.header__mobile-dropdown-text p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.4;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.header__mobile-dropdown-link:hover .header__mobile-dropdown-text p {
  opacity: 1;
}

.header__mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.header__mobile-button-hh {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gray) inset;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.header__mobile-button-hh span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark-gray);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.header__mobile-button-hh:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px var(--dark-gray) inset;
}

.header__mobile-button-hh:hover span {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.header__mobile-button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 16px;
  background: var(--dark-gray);
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0 0 2px var(--low-gray) inset;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header__mobile-button-link:hover {
  background: linear-gradient(90deg, #232323 0%, #2b2b2b 45%, #373737 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--low-gray) inset;
  transform: translateY(-2px);
}

.header__button-hh {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 0 0 2px var(--gray) inset;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.header__button-hh span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-gray);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease;
}

.header__button-hh:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--dark-gray) inset;
}

.header__button-hh:hover span {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

/* === HERO === */

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% + 240px) center;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 620px 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 60px;
  z-index: 1;
}

.hero__left {
  align-self: start;
  justify-self: start;
  padding-top: 12px;
  width: 20px;
}

.hero__right {
  align-self: start;
  justify-self: start;
  padding-top: 140px;
}

.hero__center {
  margin-right: 0;
}

.hero__left .hero__list {
  display: grid;
  gap: 18px;
}

.hero__left .hero__list li {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__left .hero__list .hero__typewriter {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  width: 17ch;
}

.hero__left .hero__list .hero__typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--dark-gray);
  /* ширину не фиксируем, чтобы текст мог расти при печати */
  animation: cursorBlink 0.8s step-end infinite;
}

.hero__left .hero__list li:nth-child(2) {
  white-space: nowrap;
}

.hero__left .dot {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--orange);
}

.hero__icon {
  display: inline-block;
  width: 86px;
  height: auto;
}

.hero__icon-explore {
  margin-right: 6px;
}

.hero__icon-arrow {
  width: 36px;
  margin-right: 10px;
}

.hero__center .hero__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.hero__center .hero__image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: cubeFloat 4s ease-in-out infinite;
  will-change: transform;
}

.hero__right .hero__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero__right .hero__note p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.hero__watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
  height: 240px;
  background: url("../media/hero/prometey.svg") center/contain no-repeat;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* === PROMO CARD === */
.promo {
  padding-bottom: 80px;
}

.promo .container {
  position: relative;
}

.promo__content {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1px 1.15fr;
  gap: 0;
  padding: 36px 42px;
  border-radius: 24px 24px 0 0;
  background: #2c2c2c;
  box-shadow: 0 2px 0 #00000020 inset, 0 0 0 1px #ffffff14 inset;
  overflow: hidden;
  max-width: 1401px;
  height: 375px;
  margin: 0 auto;
  align-items: start;
}

.promo__left {
  position: relative;
  padding-top: 24px;
  padding-right: 24px;
}

.promo__title {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.promo__cta-wrap {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  margin-left: 6px;
}

/* Скрываем мобильную кнопку по умолчанию (на десктопе) */
.promo__cta-wrap--mobile {
  display: none;
}

/* Стили для десктопной кнопки */
.promo__cta-wrap--desktop .promo__cta {
  width: 300px;
  margin-left: 40px;
}

.promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 23px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.2s ease;
  position: relative;
  z-index: 1;
  animation: ctaPress 1.4s ease-in-out infinite;
  transform-origin: center top;
}

.promo__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.25);
}

.promo__cta:active {
  transform: translateY(0);
}

.promo__hand-stub {
  position: absolute;
  left: -6px;
  top: calc(100% + -36px);
  width: 72px;
  height: 72px;
  background: url("../media/promo/hand.svg") no-repeat center/contain;
  transform: rotate(-8deg);
  z-index: 10;
  pointer-events: none;
  /* бесконечный «тап» */
  animation: handTap 1.4s ease-in-out infinite;
  transform-origin: 60% 10%;
}

.promo__divider {
  position: relative;
  width: 1px;
  height: 100%;
}

.promo__divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  bottom: 24px;
  background: #ffffff66;
  border-radius: 1px;
}

.promo__right {
  max-width: none;
  padding-left: 62px;
  padding-top: 24px;
}

.promo__right p {
  color: #e4e4e4;
  font-size: 20px;
  line-height: 1.5;
}

.promo__right p + p {
  margin-top: 14px;
}

.text-orange {
  color: var(--orange);
}

/* === ADVANTAGES SECTION === */
.advantages {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% - 240px) center;
  pointer-events: none;
  z-index: 0;
}

.advantages__content {
  position: relative;
  z-index: 1;
}

.advantages__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.advantages__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

/* Слайдер для мобильных устройств */
.advantages__slider {
  display: none;
  max-width: 320px;
  margin: 0 auto;
}

.advantages__slider-container {
  overflow: hidden;
  border-radius: 12px;
}

.advantages__slider-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}

.advantages__slider-track:active {
  cursor: grabbing;
}

.advantages__slider .advantages__card {
  min-width: 100%;
  padding: 20px 16px;
  margin: 0;
}

.advantages__slider .advantages__card-header {
  margin-bottom: 12px;
}

.advantages__slider .advantages__card-number {
  font-size: 48px;
  line-height: 0.9;
}

.advantages__slider .advantages__card-unit {
  font-size: 12px;
  margin-top: 6px;
  max-width: 70px;
}

.advantages__slider .advantages__card-divider {
  margin-bottom: 12px;
}

.advantages__slider .advantages__card-text {
  font-size: 13px;
  line-height: 1.3;
}

.advantages__slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.advantages__slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advantages__slider-dot:hover {
  background: rgba(225, 93, 10, 0.3);
}

.advantages__slider-dot--active {
  background: var(--orange);
}

.advantages__card {
  background: var(--orange);
  border-radius: 12px;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(225, 93, 10, 0.15);
}

.advantages__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 93, 10, 0.2);
}

.advantages__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.advantages__card-number {
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
}

.advantages__card-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-align: right;
  line-height: 1.3;
  margin-top: 8px;
}

.advantages__card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  border-radius: 1px;
}

.advantages__card-text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

/* === DIRECTIONS SECTION === */
.directions {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
}

.directions__content {
  position: relative;
  z-index: 1;
}

.directions__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

/* Десктопная версия - показываем по умолчанию */
.directions__desktop {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.directions__mobile {
  display: none;
}

/* Десктопная карточка */
.directions__card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 0 auto;
}

.directions__card-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.directions__card-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.directions__card-image {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.directions__card-img {
  object-fit: contain;
  border-radius: 16px;
  animation: directionsFloat 4s ease-in-out infinite;
  will-change: transform;
}

.directions__card-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.directions__card-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 300;
  align-self: flex-start;
  transition: 0.5s;
}
.directions__card-tag:hover {
  background-color: var(--orange);
  color: var(--white);
}
.directions__card-heading {
  font-size: 28px;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.3;
  margin: 0;
}

.directions__card-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
}

.directions__card-button {
  width: 65%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.directions__card-button:hover {
  background: #d14a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.3);
}

.directions__card-button:active {
  transform: translateY(0);
}

/* Мобильная карточка */
.directions__mobile-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.directions__mobile-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.directions__mobile-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.directions__mobile-img {
  max-width: 280px;
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
  animation: directionsFloat 4s ease-in-out infinite;
  will-change: transform;
}

.directions__mobile-heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.3;
  margin: 0;
}

.directions__mobile-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-gray);
  margin: 0;
}

.directions__mobile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  width: 100%;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 8px;
}

.directions__mobile-button:hover {
  background: #d14a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.3);
}

.directions__mobile-button:active {
  transform: translateY(0);
}

/* === FEEDBACK SECTION === */
.feedback {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}

.feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% - 240px) calc(50% + 230px);
  pointer-events: none;
  z-index: 0;
}

.feedback__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feedback__left {
  padding-right: 40px;
}

.feedback__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.feedback__subtitle {
  font-size: 20px;
  color: var(--dark-gray);
  line-height: 1.5;
  font-weight: 400;
}

.feedback__right {
  display: flex;
  justify-content: center;
}

.feedback__form-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feedback__form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.feedback__form-container:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.feedback__form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.feedback__form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.feedback__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback__form-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-gray);
}

.feedback__form-input,
.feedback__form-textarea {
  padding: 16px 20px;
  border: 1px solid var(--gray);
  border-radius: 12px;
  font-size: 16px;
  font-family: "Mulish", Arial, sans-serif;
  background: var(--white);
  color: var(--dark-gray);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback__form-input:focus,
.feedback__form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(225, 93, 10, 0.1);
}

.feedback__form-input::placeholder,
.feedback__form-textarea::placeholder {
  color: #999;
  font-size: 16px;
}

.feedback__form-textarea {
  resize: none;
  min-height: 120px;
}

.feedback__form-group--checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.feedback__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: var(--dark-gray);
}

.feedback__checkbox {
  display: none;
}

.feedback__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray);
  border-radius: 4px;
  background: var(--white);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.feedback__checkbox:checked + .feedback__checkbox-custom {
  background: var(--orange);
  border-color: var(--orange);
}

.feedback__checkbox:checked + .feedback__checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
}

.feedback__checkbox-text {
  flex: 1;
}

.feedback__form-button {
  padding: 18px 32px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.feedback__form-button:hover {
  background: #d14a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.3);
}

.feedback__form-button:active {
  transform: translateY(0);
}

.feedback__form-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
  animation: slideIn 0.3s ease-out;
}

.feedback__form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.feedback__form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FOOTER === */
.footer {
  background: #2e2e2e;
  border-radius: 24px 24px 0 0;
  padding: 60px 0 40px;
}

/* Переключение между десктопным и мобильным футером */
.footer--desktop {
  display: block;
}

.footer--mobile {
  display: none;
}

.footer__content {
  max-width: 1400px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.footer__sections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.footer__logo {
  width: 200px;
  height: 50px;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-right: 20px;
}

.footer__email,
.footer__phone {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer__cta:hover {
  background: #d14a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.3);
}

.footer__cta:active {
  transform: translateY(0);
}

.footer__section-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__link {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--orange);
}

.footer__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.footer__details p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.footer__social-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.footer__social-icons {
  display: flex;
  gap: 25px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: #4a4a4a;
  transform: translateY(-2px);
}

.footer__social-icon {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover .footer__social-icon {
  opacity: 1;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0 30px;
}

.footer__bottom {
  display: flex;
}

.footer__legal {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--orange);
}

/* === МОБИЛЬНЫЙ ФУТЕР === */
.footer--mobile {
  padding: 40px 0 30px;
  margin-top: 0px;
}

.footer--mobile .footer__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Заголовок мобильного футера */
.footer__mobile-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.footer__mobile-logo {
  width: 180px;
  height: 45px;
}

.footer__mobile-logo .footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__mobile-email,
.footer__mobile-phone {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.footer__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.footer__mobile-cta:hover {
  background: #d14a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.3);
}

.footer__mobile-cta:active {
  transform: translateY(0);
}

/* Социальные сети мобильного футера */
.footer__mobile-social {
  text-align: center;
}

.footer__mobile-social-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.footer__mobile-social-icons {
  display: flex;
  gap: 20px;
}

.footer__mobile-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.footer__mobile-social-link:hover {
  background: #4a4a4a;
  transform: translateY(-2px);
}

.footer__mobile-social-icon {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__mobile-social-link:hover .footer__mobile-social-icon {
  opacity: 1;
}

/* Навигация мобильного футера */
.footer__mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.footer__mobile-nav-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.footer__mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__mobile-nav-link {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__mobile-nav-link:hover {
  color: var(--orange);
}

/* Разделитель мобильного футера */
.footer__mobile-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Реквизиты мобильного футера */
.footer__mobile-company {
  text-align: left;
}

.footer__mobile-company-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer__mobile-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__mobile-details p {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* Правовая информация мобильного футера */
.footer__mobile-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: left;
}

.footer__mobile-legal-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__mobile-legal-link:hover {
  color: var(--orange);
}

/* 404 */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}
.not-found__button {
  background: var(--orange);
  color: var(--white);
  padding: 20px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
  margin-top: 30px;
  text-align: center;
}
.not-found__button:hover {
  background: #d14a08;
}
.not-found__button:active {
  background: #d14a08;
}
/* Стили для мобильного баннера */
.contact-page__content--mobile {
  display: none; /* По умолчанию скрыта */
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  gap: 0;
}

.contact-page__mobile-top {
  background: #2e2e2e;
  padding: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page__mobile-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-page__mobile-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-page__mobile-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-page__mobile-text {
  flex: 1;
}

.contact-page__mobile-heading {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-page__mobile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page__mobile-email,
.contact-page__mobile-phone,
.contact-page__mobile-address {
  color: var(--white);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.contact-page__mobile-bottom {
  background: #2e2e2e;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

.contact-page__mobile-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-page__mobile-decoration-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* === HOSTING SERVICES === */
.hero-services {
  height: 55vh;
  padding: 60px 0;
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}

.hero-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(70% + 240px) center;
  pointer-events: none;
  z-index: 0;
}

.hero-services__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero-services__text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.hero-services__title {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-services__graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.page-ml .hero-services__cube-ml {
  width: 343px;
  top: 5%;
  right: 61%;
}
.page-webdev .hero-services__cube-ml {
  width: 343px;
  top: 5%;
  right: 41%;
}
.hero-services__cube {
  position: absolute;
  width: 400px;
  height: auto;
  object-fit: contain;
  animation: cubeFloat 4s ease-in-out infinite;
  will-change: transform;
  /* Позиционирование - можете изменить эти значения */
  top: -30%;
  right: 20%;
  transform: translateY(-50%);
}

/* === HOSTING DESCRIPTION === */
.hosting-description {
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}

.hosting-description::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: url("../media/hero/Vector.svg"); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% - 240px) center;
  pointer-events: none;
  z-index: 0;
}

.hosting-description__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  z-index: 1;
}

.hosting-description__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hosting-description__title {
  font-size: 48px;
  font-weight: 500;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  color: var(--dark-gray);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.02em;
}

.hosting-description__title-line {
  display: block;
}

.hosting-description__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px;
}

.hosting-description__text {
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark-gray);
  margin: 0;
}

.hosting-description__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--orange);
  width: 100%;
  color: var(--white);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.2s ease;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  animation: ctaPress 1.4s ease-in-out infinite;
  transform-origin: center top;
}

.hosting-description__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hosting-description__button:hover {
  background: #d14a08;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.25);
}

.hosting-description__button:active {
  transform: translateY(0);
}

.hosting-description__button span {
  position: relative;
  z-index: 1;
}

/* === ML WORKFLOW === */
.ml-workflow {
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.ml-workflow__content {
  position: relative;
  z-index: 1;
}

.ml-workflow__title {
  font-size: 48px;
  font-weight: 500;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  color: var(--dark-gray);
  line-height: 1.1;
  margin: 0 0 60px 0;
  text-align: center;
  letter-spacing: 0.02em;
}

.ml-workflow__diagram {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.ml-workflow__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.ml-workflow__device {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -22px;
  bottom: -140px;
}

.ml-workflow__camera {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  animation: cameraFloat 3s ease-in-out infinite;
}

@keyframes cameraFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.ml-workflow__icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 2;
}

.ml-workflow__icon {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 93, 10, 0.3);
  }
}

.ml-workflow__icon--top-left {
  top: 180px;
  left: 20px;
  animation-delay: 0s;
}

.ml-workflow__icon--top-right {
  top: 180px;
  right: 20px;
  animation-delay: 0.5s;
}

.ml-workflow__icon--bottom-left {
  bottom: 20px;
  left: -125px;
  animation-delay: 1s;
}

.ml-workflow__icon--bottom-right {
  bottom: 20px;
  right: -125px;
  animation-delay: 1.5s;
}

.ml-workflow__icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.ml-workflow__steps {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ml-workflow__step {
  position: absolute;
  background: rgba(255, 255, 255, 0.185);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  max-width: 340px;
  height: 200px;
  transition: all 0.3s ease;
}

.ml-workflow__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ml-workflow__step--01 {
  bottom: -150px;
  left: 20px;
}

.ml-workflow__step--02 {
  top: -330px;
  left: 300px;
}

.ml-workflow__step--03 {
  top: -330px;
  right: 300px;
}

.ml-workflow__step--04 {
  bottom: -150px;
  right: 20px;
}

.ml-workflow__step-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 15px;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
}

.ml-workflow__step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0 0 10px 0;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
}

.ml-workflow__step-text {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.ml-workflow__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ml-workflow__lines-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: linesFlow 6s ease-in-out infinite;
}

@keyframes linesFlow {
  0%,
  100% {
    opacity: 0.6;
    filter: brightness(0) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  50% {
    opacity: 0.8;
    filter: brightness(0.1) drop-shadow(0 4px 8px rgba(225, 93, 10, 0.2));
  }
}

.ml-workflow__button-container {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.ml-workflow__button {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.2s ease;
  box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
  position: relative;
  z-index: 1;
  animation: ctaPress 1.4s ease-in-out infinite;
  transform-origin: center top;
}

.ml-workflow__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.ml-workflow__button:hover {
  background: #d14a08;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 93, 10, 0.25);
}

.ml-workflow__button:active {
  transform: translateY(0);
}

/* === WHY US === */
.why-us {
  background: var(--gray-background);
  padding: 100px 0;
}

.why-us__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Десктопная версия - показываем по умолчанию */
.why-us__desktop {
  display: block;
}

.why-us__image {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

/* Мобильная версия - скрываем по умолчанию */
.why-us__slider {
  display: none;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.why-us__slider-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-bottom: 40px;
  text-align: center;
}

.why-us__slider-container {
  overflow: hidden;
  border-radius: 12px;
  background: #272727;
}

.why-us__slider-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}

.why-us__slider-track:active {
  cursor: grabbing;
}

.why-us__slide {
  min-width: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #272727;
  color: var(--white) !important;
}

.why-us__slide:nth-child(odd) {
  background: var(--orange);
  color: var(--white) !important;
}

.why-us__slide-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
}

.why-us__slide-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.why-us__slide-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: var(--white) !important;
}

.why-us__slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.why-us__slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.why-us__slider-dot:hover {
  background: rgba(225, 93, 10, 0.3);
}

.why-us__slider-dot--active {
  background: var(--orange);
}

/* === ML TRENDS === */
.ml-trends {
  background: var(--gray-background);
  padding: 80px 0;
}

.ml-trends__content {
  margin: 0 auto;
}

.ml-trends__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.ml-trends__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ml-trends__card {
  background: #272727;
  border-radius: 12px;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ml-trends__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ml-trends__card-number {
  font-size: 50px;
  font-weight: 400;
  color: var(--orange);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-bottom: 20px;
}

.ml-trends__card-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ml-trends__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* === ML PRICING === */
.ml-pricing {
  background: var(--gray-background);
  padding: 80px 0;
}

.ml-pricing__content {
  margin: 0 auto;
}

.ml-pricing__title {
  text-align: center;
  margin-bottom: 60px;
}

.ml-pricing__title-main {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-bottom: 10px;
}

.ml-pricing__title-accent {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
}

.ml-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ml-pricing__card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ml-pricing__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ml-pricing__card--installation {
  background: var(--orange);
  color: var(--white);
}

.ml-pricing__card-title {
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #cac6c7;
  color: var(--dark-gray);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.2;
}

.ml-pricing__card--installation .ml-pricing__card-title {
  color: var(--white);
}

.ml-pricing__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.ml-pricing__card-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-gray);
}

.ml-pricing__card--installation .ml-pricing__card-feature {
  color: var(--white);
}

.ml-pricing__check-icon {
  color: var(--white);
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 4px;
  padding: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

.ml-pricing__check-icon svg {
  stroke: var(--white);
}

.ml-pricing__card--installation .ml-pricing__check-icon {
  background: var(--white);
  color: var(--orange);
}

.ml-pricing__card--installation .ml-pricing__check-icon svg {
  stroke: var(--orange);
}

.ml-pricing__card-price {
  text-align: center;
  margin-top: auto;
}

.ml-pricing__price-old {
  display: block;
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.ml-pricing__price-new {
  display: block;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-gray);
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  margin-bottom: 10px;
}

.ml-pricing__price-note {
  font-size: 14px;
  color: #666;
  margin: 0;
  text-align-last: left;
  font-weight: 400;
  line-height: 1.4;
}

.ml-pricing__card-note {
  font-size: 14px;
  color: var(--dark-gray);
  text-align: left;
  margin: 0;
  font-weight: 400;
  margin-top: auto;
}

.ml-pricing__card--installation .ml-pricing__card-note {
  color: var(--white);
}

/* === ML ADVANTAGES === */
.ml-advantages {
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.ml-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  transform: scaleX(-1);
}

.ml-advantages__content {
  position: relative;
  display: flex;

  align-items: center;
  gap: 80px;
  z-index: 1;
}

.ml-advantages__left {
  position: relative;
}

.ml-advantages__title {
  font-size: 48px;
  font-weight: 500;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  color: var(--dark-gray);
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.02em;
}

.ml-advantages__right {
  position: relative;
  z-index: 1;
}

.ml-advantages__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ml-advantages__card {
  background: transparent;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  transition: all 0.7s ease;
}

.ml-advantages__card--highlighted {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--orange);
}

.ml-advantages__card--highlighted .ml-advantages__card-title {
  color: var(--dark-gray);
}

.ml-advantages__card--highlighted .ml-advantages__card-text {
  color: var(--dark-gray);
}

.ml-advantages__card:not(.ml-advantages__card--highlighted):hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--orange);
  transform: translateY(-5px);
}

.ml-advantages__card-number {
  width: 50px;
  height: 50px;
  padding: 37px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  color: #888;
  margin-bottom: 20px;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

.ml-advantages__card--highlighted .ml-advantages__card-number {
  background: var(--orange);
  color: var(--white);
}

.ml-advantages__card:not(.ml-advantages__card--highlighted):hover
  .ml-advantages__card-number {
  background: var(--orange);
  color: var(--white);
}

.ml-advantages__card-content {
  margin-left: 0;
}

.ml-advantages__card-title {
  font-size: 26px;
  font-weight: 600;
  color: #888;
  margin: 0 0 15px 0;
  line-height: 1.3;
  font-family: "Tektur", "Mulish", Arial, sans-serif;
  transition: color 0.3s ease;
}

.ml-advantages__card:not(.ml-advantages__card--highlighted):hover
  .ml-advantages__card-title {
  color: var(--dark-gray);
}

.ml-advantages__card-text {
  font-size: 20px;
  line-height: 1.6;
  color: #a0a0a0;
  margin: 0;
  transition: color 0.3s ease;
}

.ml-advantages__card:not(.ml-advantages__card--highlighted):hover
  .ml-advantages__card-text {
  color: var(--dark-gray);
}

.ml-advantages__card-cursor {
  position: absolute;
  bottom: -25px;
  right: 20px;
  z-index: 2;
}

.ml-advantages__cursor-icon {
  width: 60px;
  height: auto;
  transform: rotate(-15deg);
  animation: cursorClick 1.5s ease-in-out infinite;
}

.ml-advantages__card:hover .ml-advantages__cursor-icon {
  transform: rotate(-15deg) scale(1.1);
}

@keyframes cursorClick {
  0%,
  100% {
    transform: rotate(-15deg) translateX(0);
  }
  50% {
    transform: rotate(-18deg) translateX(-8px);
  }
}

/* === HOSTING BANNER === */
.hosting-banner {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}

.hosting-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% + 240px) center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.hosting-banner__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  z-index: 1;
}

.hosting-banner__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hosting-banner__text-block {
  display: flex;
  flex-direction: column;
}

.hosting-banner__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
}

.hosting-banner__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting-banner__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.hosting-banner__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === HOSTING ADVANTAGES === */
.hosting-advantages {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}

.hosting-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% - 240px) center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.hosting-advantages__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.hosting-advantages__diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  width: 700px;
  height: 700px;
  margin: 0 auto;
  z-index: 1;
}

.hosting-advantages__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.hosting-advantages__circle {
  width: 500px;
  height: 500px;
  object-fit: contain;
}

.hosting-advantages__card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 3;
  width: 280px;
}

.hosting-advantages__card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hosting-advantages__card-text {
  font-size: 12px;
  line-height: 1.4;
  color: var(--dark-gray);
  margin: 0;
}

.hosting-advantages__connector {
  position: absolute;
  width: 2px;
  height: 100px;
  z-index: 1;
}

.hosting-advantages__connector::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  top: -4px;
  left: -3px;
}

/* Позиционирование карточек через Grid */
.hosting-advantages__card--1 {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  align-self: start;
}

.hosting-advantages__card--1 .hosting-advantages__connector {
  right: 33px;
  top: 93%;
  transform: translateY(-50%) rotate(45deg);
}

.hosting-advantages__card--2 {
  grid-column: 7;
  grid-row: 2;
  justify-self: start;
  align-self: start;
}

.hosting-advantages__card--2 .hosting-advantages__connector {
  left: 30px;
  top: 123%;
  transform: translateY(-50%) rotate(-45deg);
}

.hosting-advantages__card--3 {
  grid-column: 1;
  grid-row: 6;
  justify-self: end;
  align-self: end;
}

.hosting-advantages__card--3 .hosting-advantages__connector {
  right: -34px;
  top: 62%;
  transform: translateY(-50%) rotate(-45deg);
}

.hosting-advantages__card--4 {
  grid-column: 4;
  grid-row: 7;
  justify-self: center;
  align-self: start;
}

.hosting-advantages__card--4 .hosting-advantages__connector {
  top: -50px;
  left: 57%;
  transform: translateX(-50%) rotate(90deg);
}

.hosting-advantages__card--5 {
  grid-column: 7;
  grid-row: 6;
  justify-self: start;
  align-self: end;
}

.hosting-advantages__card--5 .hosting-advantages__connector {
  left: -37px;
  top: 69%;
  transform: translateY(-50%) rotate(45deg);
}

/* Мобильный слайдер для преимуществ хостинга */
.hosting-advantages__slider {
  display: none;
  width: 100%;
  margin: 0 auto;
}

.hosting-advantages__slider-container {
  overflow: hidden;
  border-radius: 12px;
}

.hosting-advantages__slider-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}

.hosting-advantages__slider-track:active {
  cursor: grabbing;
}

.hosting-advantages__slider .hosting-advantages__card {
  min-width: 100%;
  padding: 40px 30px;
  margin: 0;
  width: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
}

.hosting-advantages__slider .hosting-advantages__card-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--white);
}

.hosting-advantages__slider .hosting-advantages__card-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.hosting-advantages__slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hosting-advantages__slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hosting-advantages__slider-dot:hover {
  background: rgba(225, 93, 10, 0.3);
}

.hosting-advantages__slider-dot--active {
  background: var(--orange);
}

/* === HOSTING SERVICES === */
.hosting-services {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
  overflow: hidden;
}
.card-title-hosting {
  color: var(--white);
}
.card-text-hosting {
  color: var(--white);
}
.hosting-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(50% + 240px) center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.hosting-services__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.hosting-services__grid {
  position: relative;
  display: grid;
  grid-template-rows: repeat(6, 150px);
  gap: 20px;
  z-index: 1;
}

.hosting-services__card {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hosting-services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hosting-services__card-title {
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hosting-services__card-text {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.hosting-services__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 12px;
  height: 60px;
}

.hosting-services__button:hover {
  background: #d14a08;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 93, 10, 0.3);
}

.hosting-services__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.hosting-services__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: cubeFloat 4s ease-in-out infinite;
  will-change: transform;
}

/* Индивидуальные размеры и позиционирование иконок */
.hosting-services__card--bitrix .hosting-services__icon {
  width: 97%;
  height: 66%;
  bottom: 20px;
  right: 10px;
}

.hosting-services__card--vds .hosting-services__icon {
  width: 106%;
  height: 200%;
  bottom: 20px;
}

.hosting-services__card--vdi .hosting-services__icon {
  width: 100%;
  height: 100%;
  bottom: -100px;
  right: -200px;
}

.hosting-services__card--cloud .hosting-services__icon {
  width: 100%;
  height: 100%;
  bottom: -100px;
  right: 0;
}

/* Позиционирование блоков через Grid */
.hosting-services__card--hosting {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--dark-gray);
  color: var(--white);
}

.hosting-services__card--hicpu {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--orange);
}

.hosting-services__card--bitrix {
  grid-column: 4 / 5;
  grid-row: 1 / 4;
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--orange);
}

.hosting-services__card--domain {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
  background: var(--white);
  color: var(--dark-gray);
}

.hosting-services__card--vds {
  grid-column: 2 / 5;
  grid-row: 4 / 5;
  background: linear-gradient(90deg, #272727 14%, #e15d0a 57%, #e15d0a 100%);
  color: var(--white);
}

.hosting-services__card--vdi {
  grid-column: 2;
  grid-row: 7/5;
  background: var(--white);
  z-index: 10000;
  color: var(--dark-gray);
}

.hosting-services__card--server {
  grid-column: 3;
  grid-row: 7 / 5;
  background: var(--dark-gray);
  color: var(--white);
}

.hosting-services__card--cloud {
  grid-column: 4;
  grid-row: 7 / 5;
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--orange);
}

/* === CONTACT PAGE === */

/* Хлебные крошки */
.breadcrumb {
  padding: 20px 0;
  background: var(--gray-background);
}

.breadcrumb__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.breadcrumb__link {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: var(--orange);
}

.breadcrumb__separator {
  color: var(--gray);
}

.breadcrumb__current {
  color: var(--orange);
  font-weight: 500;
}

/* === BLOG PAGE === */
.blog {
  padding: 60px 0 80px;
  background: var(--gray-background);
}

.blog__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-gray);
  margin: 0 0 24px;
  text-transform: uppercase;
}

.blog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.blog__chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #A1A1AA;
  background: var(--white);
  color: var(--dark-gray);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog__chip:hover {
  transform: translateY(-1px);
}
.blog__chip--active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.blog__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__thumb {
  width: 100%;
  height: 230px;
  border-radius: 10px;
  overflow: hidden;
  background: #eaeaea;
  display: block;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 12px;
}
.blog-card__tag {
  color: var(--gray);
}
.blog-card__date {
  margin-left: auto;
  color: var(--gray);
}

.blog-card__title {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
}
.blog-card__title:hover {
  color: var(--orange);
}
.blog-card__excerpt {
  color: var(--dark-gray);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* скрытие карт при фильтрации */
.blog-card--hidden {
  display: none;
}

/* === BLOG POST PAGE === */
.blog-post {
  padding: 40px 0 80px;
  background: var(--gray-background);
}
.blog-post__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas: "main aside";
  gap: 48px;
  align-items: start;
}
.blog-post__main { grid-area: main; }
.blog-post__aside { grid-area: aside; }
.blog-post__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-gray);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 16px;
}
.blog-post__thumb {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.blog-post__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-post__tags { display: flex; gap: 12px; flex-wrap: wrap; }
.blog-post__tag { color: var(--gray); font-size: 12px; }
.blog-post__date { color: var(--gray); margin-left: auto; font-size: 12px; }
.blog-post__content { color: var(--dark-gray); line-height: 1.6; display: flex; flex-direction: column; gap: 10px; }

.blog-post__aside-title { font-size: 16px; font-weight: 600; color: var(--dark-gray); margin: 0 0 12px; }
.blog-post__aside-item { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 10px; border-radius: 12px; background: var(--white); color: var(--dark-gray); text-decoration: none; }
.blog-post__aside-item + .blog-post__aside-item { margin-top: 10px; }
.blog-post__aside-item:hover { color: var(--orange); }
.blog-post__aside-thumb { width: 56px; height: 56px; border-radius: 8px; background: #EAEAEA; display: block; }
.blog-post__aside-text { font-size: 12px; line-height: 1.25; }

/* Основной блок контактов */
.contact-page {
  padding: 0 0 80px;
  background: var(--gray-background);
}

.contact-page__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.02em;
}

.contact-page__content {
  display: flex;
  align-items: stretch;
  background: #2e2e2e;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  gap: 20px;
}

/* Переключение между версиями */
.contact-page__content--desktop {
  display: flex; /* По умолчанию показывается */
}

.contact-page__content--mobile {
  display: none; /* По умолчанию скрыта */
}

.contact-page__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  background: #2e2e2e;
}

.contact-page__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.contact-page__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-page__heading {
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.02em;
}

.contact-page__cta {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page__text {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 500px;
}

.contact-page__email,
.contact-page__phone,
.contact-page__address {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.contact-page__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page__social-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.contact-page__social-icons {
  display: flex;
  gap: 16px;
}

.contact-page__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e2e2e;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-page__social-link:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-page__social-icon {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
  transition: color 0.3s ease;
  font-family: "Tektur", sans-serif;
}

.contact-page__social-link:hover .contact-page__social-icon {
  color: #2e2e2e;
}

.contact-page__social-link svg {
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

.contact-page__social-link:hover svg {
  fill: #2e2e2e;
}

.contact-page__social-link img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.contact-page__social-link:hover img {
  filter: brightness(0) invert(0);
}

.contact-page__right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40%;
}

.contact-page__decoration {
  width: 100%;
  max-width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page__decoration-img {
  object-fit: contain;
}

/* Блок КЛЮЧЕВЫЕ ТЕХНОЛОГИИ */
.tech-features {
  padding: 80px 0;
  background: var(--gray-background);
  position: relative;
}

.tech-features__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tech-features__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -40px;
  position: relative;
}

.tech-features__item {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease-out;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  z-index: 1;
  cursor: pointer;
  user-select: none;
}

.tech-features__item:hover:not(.tech-features__item--active) {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 93, 10, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(225, 93, 10, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 93, 10, 0);
  }
}

.tech-features__item:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Эффект нажатия курсора */
.tech-features__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.tech-features__item:active::before {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.2) 0%,
    transparent 70%
  );
}

.tech-features__item--active {
  background: linear-gradient(
    35deg,
    #e15d0a 0%,
    #333333 30%,
    #333333 52%,
    #e15d0a 92%
  );
  width: 400px;
  height: 400px;
  z-index: 10;
  margin: 0 -40px;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--white);
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.tech-features__item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.3;
  transition: all 0.4s ease-out;
}

.tech-features__item--active .tech-features__item-title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}

.tech-features__item-description {
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.tech-features__item--active .tech-features__item-description {
  opacity: 0.9;
  max-height: 200px;
}

/* Блок КАК МЫ РАБОТАЕМ */
.how-we-work {
  padding: 80px 0;
  background: var(--gray-background);
}

.how-we-work__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 60px;
  text-align: left;
  text-transform: uppercase;
}

.how-we-work__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.how-we-work__card {
  background: var(--dark-gray);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease;
  width: 338px;
  height: 485px;
  display: flex;
  flex-direction: column;
}

.how-we-work__card:nth-child(1) {
  margin-top: 0;
}

.how-we-work__card:nth-child(2) {
  margin-top: 60px;
}

.how-we-work__card:nth-child(3) {
  margin-top: -80px;
}

.how-we-work__card:nth-child(4) {
  margin-top: 10px;
}

.how-we-work__card:hover {
  transform: translateY(-5px);
}

.how-we-work__number {
  font-size: 50px;
  font-weight: 300;
  color: var(--gray-background);
  margin-bottom: 60px;
  line-height: 1;
}

.how-we-work__card-title {
  font-size: 23px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.how-we-work__card-description {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
  opacity: 0.9;
}

/* Блок ПЛЮСЫ ЗАПУСКА САЙТА */
.website-benefits {
  padding: 40px 0;
  background: var(--dark-gray);
}

.website-benefits__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
  text-align: left;
  text-transform: uppercase;
}

.website-benefits__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.website-benefits__desktop {
  display: block;
  max-width: 60%;
}

.website-benefits__mobile {
  display: none;
}

.website-benefits__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Блок ПРОЕКТЫ */
.projects {
  padding: 80px 0;
  background: var(--gray-background);
}

.projects__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.projects__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

.projects__cards {
  display: grid;
  grid-template-columns: repeat(3, 456px);
  gap: 24px;
  justify-content: center;
}

/* Специальные стили для страницы хостинга - центрирование 2 карточек */
.projects__cards--hosting {
  grid-template-columns: repeat(2, 456px);
  justify-content: center;
}

.projects__card-wrapper {
  position: relative;
}

.projects__card {
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 456px;
  height: 312.78px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projects__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.projects__card-wrapper:hover .projects__card-arrow svg {
  animation: arrowMove 1.2s ease-in-out infinite;
}

.projects__card--ml {
  background: var(--gray-background);
  border: 2px solid var(--orange);
}

.projects__card--webdev {
  background: var(--dark-gray);
  color: var(--white);
}

.projects__card--webdev .projects__card-title,
.projects__card--webdev .projects__card-description {
  color: var(--white);
  font-family: "Mulish", Arial, sans-serif;
}
.projects__card-description{
  font-family: "Mulish", Arial, sans-serif !important;
}
.projects__card--hosting {
  background: var(--orange);
  color: var(--white);
}

.projects__card--hosting .projects__card-title,
.projects__card--hosting .projects__card-description {
  color: var(--white);
}

.projects__card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.projects__card-title {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.projects__card-description {
  font-size: 26px;
  line-height: 1.5;
  margin: 0;
}

.projects__card-arrow {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.projects__card-arrow--ml {
  background: var(--orange);
  border: 2px solid var(--orange);
}

.projects__card-arrow--ml svg {
  stroke: var(--white);
}
.projects__card-arrow--webdev {
  background: var(--white);
  border: 2px solid var(--dark-gray);
}

.projects__card-arrow--webdev svg {
  stroke: var(--dark-gray);
}

.projects__card-arrow--hosting {
  background: var(--white);
  border: 2px solid var(--orange);
}

.projects__card-arrow--hosting svg {
  stroke: var(--orange);
}

/* Убираем hover эффект для квадрата стрелочки */

.projects__card-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

@keyframes arrowMove {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@media (max-width: 1200px) {
  /* Blog post */
  .blog-post__grid { grid-template-columns: 1fr 280px; gap: 32px; }
  .blog-post__title { font-size: 32px; }
  .hero__content {
    grid-template-columns: 1fr 520px 1fr;
  }
  .footer--desktop {
    display: none;
  }

  /* Показываем мобильный footer */
  .footer--mobile {
    display: block;
  }

  .ml-pricing__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ml-pricing__title-main {
    font-size: 32px;
  }

  .ml-pricing__title-accent {
    font-size: 42px;
  }

  .projects__title {
    font-size: 42px;
  }
  .projects__card-description br {
    display: none;
  }
  .projects__card-description br::before {
    content: " ";
  }
  .projects__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: stretch;
  }

  /* Адаптивные стили для страницы хостинга */
  .projects__cards--hosting {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: stretch;
  }

  .projects__card {
    width: 100%;
    height: auto;
    padding: 36px 28px;
    min-height: 180px;
    justify-content: flex-start;
  }

  .projects__card-content {
    gap: 16px;
    justify-content: flex-start;
  }

  .projects__card-title {
    font-size: 22px;
  }

  .hero__watermark {
    height: 200px;
  }

  .hero::before {
    background-position: calc(50% + 20px) center;
  }

  /* Переключаемся на бургер меню */
  .header__nav {
    display: none;
  }

  .header__button {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__mobile-menu {
    display: block;
  }

  /* Скрываем выпадающее меню на мобильных устройствах */
  .header__dropdown {
    display: none;
  }

  /* Адаптив для блока преимуществ */
  .advantages__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  /* На планшетах оставляем десктопную версию */

  .advantages__slider .advantages__card {
    padding: 18px 14px;
  }

  .advantages__slider .advantages__card-number {
    font-size: 44px;
  }

  .advantages__slider .advantages__card-unit {
    font-size: 11px;
    max-width: 65px;
  }

  .advantages__slider .advantages__card-text {
    font-size: 12px;
  }

  .advantages::before {
    background-position: calc(50% - 50px) center;
    opacity: 0.15;
  }

  /* Footer адаптив для больших экранов */
  .footer {
    padding: 50px 0 35px;
    margin-top: 0px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }

  .footer__logo {
    width: 180px;
    height: 45px;
  }

  .footer__section-title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .footer__email,
  .footer__phone {
    font-size: 15px;
  }

  .footer__link {
    font-size: 15px;
  }

  .footer__details p {
    font-size: 15px;
  }

  .footer__social-title {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .footer__social-link {
    width: 44px;
    height: 44px;
  }

  .footer__legal-link {
    font-size: 15px;
  }

  .footer__legal {
    gap: 35px;
  }

  /* Адаптив для блока направлений на больших экранах */
  .directions__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .directions__card {
    padding: 35px;
    gap: 35px;
  }

  .directions__card-title {
    font-size: 28px;
  }

  .directions__card-image {
    height: 280px;
  }

  .directions__card-heading {
    font-size: 26px;
  }

  .directions__card-text {
    font-size: 17px;
  }

  /* Адаптив для блока хостинга на больших экранах */
  .hero-services {
    padding: 50px 0;
  }

  .hero-services__cube {
    width: 350px;
  }

  .page-ml .hero-services__cube-ml {
    width: 300px;
  }
  .page-webdev .hero-services {
    height: 43vh;
  }
  .page-webdev .hero-services__cube-ml {
    width: 300px;
  }

  /* Адаптив для блока описания хостинга на больших экранах */
  .hosting-description {
    padding: 60px 0;
  }

  /* Адаптив для блока этапов работы ML на больших экранах */
  .ml-workflow {
    padding: 60px 0;
  }

  .ml-workflow__title {
    font-size: 42px;
  }

  .ml-workflow__diagram {
    min-height: 500px;
  }

  .ml-workflow__device {
    width: 180px;
    height: 180px;
  }

  .ml-workflow__icons {
    width: 350px;
    height: 350px;
  }

  .ml-workflow__step {
    max-width: 250px;
    padding: 25px;
  }

  .ml-workflow__step-title {
    font-size: 18px;
  }

  .ml-workflow__step-text {
    font-size: 14px;
  }

  /* Адаптив для блока преимуществ ML на больших экранах */
  .ml-advantages {
    padding: 60px 0;
  }

  .ml-advantages__content {
    flex-wrap: wrap;
    gap: 60px;
  }

  .ml-advantages__title {
    font-size: 42px;
  }

  .hosting-description__content {
    gap: 40px;
  }

  .hosting-description__title {
    font-size: 42px;
  }

  .hosting-description__text {
    font-size: 18px;
  }

  /* Адаптив для диаграммы преимуществ на больших экранах */

  .hosting-advantages__card-title {
    font-size: 15px;
  }

  .hosting-advantages__card-text {
    font-size: 12px;
  }

  /* Адаптив для баннера хостинга на больших экранах */
  .hosting-banner {
    padding: 60px 0;
  }

  .hosting-banner__content {
    gap: 40px;
  }
  .hosting-advantages__card--3 .hosting-advantages__connector {
    top: 52%;
  }
  .hosting-advantages__card--1 .hosting-advantages__connector {
    top: 90%;
  }
  .hosting-banner__text {
    font-size: 16px;
  }

  .hosting-banner__graphic {
    max-width: 400px;
  }

  .ml-trends__cards {
    grid-template-columns: 1fr;
  }

  .ml-pricing {
    padding: 60px 0;
  }

  .ml-pricing__title-main {
    font-size: 28px;
  }

  .ml-pricing__title-accent {
    font-size: 36px;
  }

  .ml-pricing__card {
    padding: 30px 25px;
    height: auto;
  }

  .ml-pricing__card-title {
    font-size: 20px;
  }

  .ml-pricing__card-feature {
    font-size: 14px;
  }

  .ml-pricing__price-new {
    font-size: 28px;
  }
  .hero__content {
    gap: 5px;
  }
  .hero__left {
    order: 0;
  }
  .promo__content {
    height: 100%;
  }

  .hero__right {
    margin-bottom: 0px;
  }
  .not-found__img {
    width: 70%;
    height: 70%;
  }
  .not-found__button {
    font-size: 16px;
  }
  .hero__watermark {
    height: 90px;
    top: 21%;
  }
  .breadcrumb {
    padding: 16px 0;
  }
  .blog {
    padding: 40px 0 60px;
  }
  .blog__title {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .blog__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card__thumb {
    height: 200px;
  }
  .contact-page__mobile-heading {
    font-size: 30px;
  }
  .contact-page__mobile-email,
  .contact-page__mobile-phone,
  .contact-page__mobile-address {
    font-size: 25px;
  }

  /* Технологии */
  .tech-features {
    padding: 60px 0;
  }

  .tech-features__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .tech-features__content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .tech-features__item {
    width: 300px;
    height: 300px;
    padding: 35px;
    margin: 0;
  }

  .tech-features__item--active {
    width: 340px;
    height: 340px;
    margin: 0;
  }

  .tech-features__item-title {
    font-size: 18px;
  }

  .tech-features__item--active .tech-features__item-title {
    font-size: 16px;
  }

  .tech-features__item-description {
    font-size: 12px;
  }

  /* Как мы работаем */
  .how-we-work {
    padding: 60px 0;
  }

  .how-we-work__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .how-we-work__content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .how-we-work__card {
    padding: 35px 25px;
    width: calc(50% - 12.5px);
    height: 285px;
    margin-top: 0 !important;
  }

  .how-we-work__number {
    font-size: 40px;
  }

  .how-we-work__card-title {
    font-size: 18px;
  }

  .how-we-work__card-description {
    font-size: 13px;
  }

  /* Плюсы запуска сайта */
  .website-benefits {
    padding: 30px 0;
  }

  .website-benefits__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .website-benefits__desktop {
    max-width: 70%;
  }

  .breadcrumb__nav {
    font-size: 14px;
  }

  /* Контакты - переключение на мобильную версию */
  .contact-page__content--desktop {
    display: none;
  }

  .contact-page__content--mobile {
    display: block;
    padding: 0;
  }

  .contact-page {
    padding: 0 0 60px;
  }

  .contact-page__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .contact-page__left {
    padding: 30px 20px;
  }

  .contact-page__right {
    min-height: 250px;
  }

  .contact-page__left {
    gap: 20px;
  }

  .contact-page__icon {
    width: 50px;
    height: 50px;
  }

  .contact-page__heading {
    font-size: 24px;
  }

  .contact-page__cta {
    font-size: 18px;
  }

  .contact-page__email,
  .contact-page__phone,
  .contact-page__address {
    font-size: 15px;
  }

  .contact-page__social-title {
    font-size: 16px;
  }

  .contact-page__social-link {
    width: 44px;
    height: 44px;
  }

  .contact-page__social-icon {
    font-size: 16px;
  }

  .contact-page__social-link svg {
    width: 20px;
    height: 20px;
  }

  .contact-page__decoration {
    max-width: 300px;
    height: 250px;
  }

  .projects {
    padding: 60px 0;
  }

  .projects__title {
    font-size: 36px;
  }

  .projects__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: stretch;
  }

  /* Адаптивные стили для страницы хостинга на мобильных */

  .projects__card {
    width: 100%;
    height: auto;
    padding: 32px 24px;
    min-height: 160px;
    justify-content: flex-start;
  }

  .projects__card-content {
    gap: 16px;
    justify-content: flex-start;
  }

  .projects__card-arrow {
    top: -6px;
    right: -6px;
    width: 36px;
    height: 36px;
  }

  .projects__card-title {
    font-size: 20px;
  }

  .projects__card-description {
    font-size: 15px;
  }

  /* Добавляем подробные описания для мобильной версии */
  .projects__card--ml .projects__card-description::after {
    content: "Обучаем камеры видеонаблюдения не просто фиксировать события, а анализировать их, распознавать образы и выявлять аномалии.";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card--webdev .projects__card-description::after {
    content: "От проектирования и дизайна до программирования и запуска — мы реализуем проекты любой сложности, которые точно отражают ценности вашего бренда и решают задачи вашей аудитории.";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card--hosting .projects__card-description::after {
    content: "Предлагаем не просто инфраструктуру, а современную экосистему спроектированную для решения реальных бизнес задач";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .hero__right .hero__note {
    justify-content: center;
  }
  .hero__left .hero__list {
    margin-top: -45px;
  }
  .hero__right .hero__note p {
    font-size: 16px;
  }

  /* Footer адаптив для средних мобильных устройств */
  .footer {
    padding: 40px 0 25px;
    margin-top: 40px;
  }

  .footer__top {
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer__brand {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }

  .footer__sections {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer__logo {
    width: 150px;
    height: 38px;
    margin: 0 auto;
  }

  .footer__contact {
    align-items: center;
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer__cta {
    align-self: center;
    margin-top: 0;
  }

  .footer__info,
  .footer__directions,
  .footer__company {
    text-align: center;
  }

  .footer__section-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer__email,
  .footer__phone {
    font-size: 13px;
  }

  .footer__link {
    font-size: 13px;
  }

  .footer__details p {
    font-size: 13px;
  }

  .footer__social-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer__social-icons {
    justify-content: center;
  }

  .footer__social-link {
    width: 38px;
    height: 38px;
  }

  .footer__social-icon {
    width: 18px;
    height: 18px;
  }

  .footer__legal-link {
    font-size: 13px;
  }

  .footer__legal {
    gap: 25px;
  }

  .footer__divider {
    margin: 25px 0 20px;
  }

  /* Адаптив для мобильного футера на средних мобильных устройствах */
  .footer--mobile {
    padding: 35px 0 25px;
    margin-top: 0px;
  }

  .footer--mobile .footer__content {
    gap: 25px;
  }

  .footer__mobile-header {
    gap: 20px;
  }

  .footer__mobile-logo {
    width: 160px;
    height: 40px;
  }

  .footer__mobile-email,
  .footer__mobile-phone {
    font-size: 15px;
  }

  .footer__mobile-cta {
    padding: 12px 24px;
    font-size: 15px;
  }

  .footer__mobile-social-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .footer__mobile-social-link {
    width: 44px;
    height: 44px;
  }

  .footer__mobile-social-icon {
    width: 100%;
    height: 100%;
  }

  .footer__mobile-nav {
    gap: 70px;
  }

  .footer__mobile-nav-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .footer__mobile-nav-link {
    font-size: 15px;
  }

  .footer__mobile-company-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer__mobile-details p {
    font-size: 13px;
  }

  .footer__mobile-legal-link {
    font-size: 13px;
  }

  .promo__left {
    padding-top: 16px;
  }

  .promo__title {
    margin-bottom: 10px;
    font-size: 35px;
  }
  .promo__right p {
    font-size: 16px;
  }
  .promo__cta-wrap {
    margin-top: 8px;
    margin-left: 0;
  }

  /* Настройки для мобильной кнопки */
  .promo__cta-wrap--mobile {
    display: none;
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
  }

  .promo__cta-wrap--mobile .promo__cta {
    width: 100%;
    margin-left: 0;
    padding: 10px 20px;
    font-size: 15px;
    font-size: 16px;
    border-radius: 10px;
  }

  .hero__center .hero__image-img {
    height: 80%;
  }

  .header__content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header__logo {
    width: 180px;
    height: 42px;
  }

  .header__burger {
    width: 36px;
    height: 36px;
  }

  .header__mobile-menu-link {
    font-size: 28px;
  }

  .header__mobile-menu-content {
    gap: 50px;
  }

  .header__mobile-menu-list {
    gap: 35px;
  }
  .hero__left .hero__list li {
    font-size: 22px;
  }

  /* Адаптив для блока преимуществ на мобилках */
  .advantages {
    padding: 40px 0;
  }

  .advantages__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .advantages__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 350px;
  }

  .advantages__card {
    padding: 20px 16px;
  }

  .advantages__card-number {
    font-size: 48px;
  }

  .advantages__card-unit {
    font-size: 12px;
    max-width: 70px;
  }

  /* Скрываем десктопную версию, показываем слайдер только на мобилках */
  .advantages__cards--desktop {
    display: none;
  }

  .advantages__slider--mobile {
    display: block;
    max-width: 85%;
  }

  .advantages__slider .advantages__card {
    padding: 18px 16px;
  }

  .advantages__slider .advantages__card-number {
    font-size: 40px;
  }

  .advantages__slider .advantages__card-unit {
    font-size: 10px;
    max-width: 60px;
  }

  .advantages__slider .advantages__card-text {
    font-size: 11px;
  }

  .advantages::before {
    background-position: calc(50% - 20px) center;
    opacity: 0.1;
  }

  /* Переключение блоков направлений на мобилках */
  .directions {
    padding: 40px 0;
  }

  .directions__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* Скрываем десктопную версию */
  .directions__desktop {
    display: none;
  }

  /* Показываем мобильную версию */
  .directions__mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .directions__mobile-card {
    margin: 0 10px;
  }

  /* Адаптив для блока хостинга на мобильных устройствах */
  .hero-services {
    height: 30vh;

    padding: 30px 0;
  }

  .hero-services__cube {
    width: 250px;
    right: 10%;
  }

  .page-ml .hero-services__cube-ml {
    top: 10%;
    width: 200px;
    right: 15%;
  }

  /* Адаптив для блока описания хостинга на мобильных устройствах */
  .hosting-description {
    padding: 40px 0;
  }

  /* Адаптив для блока этапов работы ML на мобильных устройствах */
  .ml-workflow {
    padding: 40px 0;
  }

  .ml-workflow .container {
    padding-left: 0;
    padding-right: 0;
  }

  .ml-workflow__title {
    font-size: 32px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .ml-workflow__diagram {
    min-height: auto;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0;
    margin: 0;
  }

  .ml-workflow__center {
    display: none;
  }

  .ml-workflow__icons {
    display: none;
  }

  .ml-workflow__lines {
    display: none;
  }

  .ml-workflow__steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 95%;
    align-items: stretch;
    margin: 0 auto;
  }

  .ml-workflow__step {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 25px;
    height: auto;
    margin: 0;
  }

  .ml-workflow__step--01,
  .ml-workflow__step--02,
  .ml-workflow__step--03,
  .ml-workflow__step--04 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .ml-workflow__step-title {
    font-size: 18px;
  }

  .ml-workflow__step-text {
    font-size: 14px;
    line-height: 1.4;
  }
  .ml-workflow__button {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .ml-workflow__button-container {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    justify-content: center;
    padding: 0 20px;
  }

  .ml-workflow__button {
    font-size: 16px;
    padding: 12px 30px;
  }

  /* Адаптив для блока преимуществ ML на мобильных устройствах */
  .ml-advantages {
    padding: 40px 0;
  }

  .ml-advantages::before {
    display: none;
  }

  .ml-advantages__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ml-advantages__title {
    font-size: 32px;
  }

  .ml-advantages__cards {
    gap: 25px;
  }

  .ml-advantages__card {
    padding: 20px;
  }

  .ml-advantages__card-title {
    font-size: 18px;
  }

  .ml-advantages__card-text {
    font-size: 15px;
  }

  .hosting-description__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hosting-description__left {
    justify-content: center;
  }

  .hosting-description__title {
    font-size: 32px;
  }

  .hosting-description__right {
    padding-left: 0;
    align-items: center;
  }

  .hosting-description__text {
    font-size: 16px;
    text-align: center;
  }

  .hosting-description__button {
    align-self: center;
  }

  /* Адаптив для баннера хостинга на мобильных устройствах */
  .hosting-banner {
    padding: 40px 0;
  }
  .hosting-banner__right {
    order: -1;
  }
  .hosting-banner__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hosting-banner__left {
    gap: 20px;
  }

  .hosting-banner__text {
    font-size: 15px;
    text-align: left;
  }

  .hosting-banner__graphic {
    max-width: 350px;
  }

  /* Переключение на мобильный слайдер */
  .hosting-advantages {
    padding: 40px 0;
  }

  .hosting-advantages__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  /* Скрываем десктопную диаграмму */
  .hosting-advantages__diagram--desktop {
    display: none;
  }

  /* Показываем мобильный слайдер */
  .hosting-advantages__slider--mobile {
    display: block;
  }

  /* Адаптив для блока услуг хостинга */
  .hosting-services {
    padding: 40px 0;
  }

  .hosting-services__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .hosting-services__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
  }

  .hosting-services__card {
    padding: 24px 20px;
    min-height: 150px;
  }

  .hosting-services__card-title {
    font-size: 18px;
  }

  .hosting-services__card-text {
    font-size: 14px;
  }

  .hosting-services__icon {
    display: none;
  }

  /* Сбрасываем Grid позиционирование на мобильных */
  .hosting-services__card--hosting,
  .hosting-services__card--hicpu,
  .hosting-services__card--bitrix,
  .hosting-services__card--domain,
  .hosting-services__card--vds,
  .hosting-services__card--vdi,
  .hosting-services__card--server,
  .hosting-services__card--cloud {
    grid-column: 1;
    grid-row: auto;
  }
}
@media (max-width: 992px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  /* Контакты */
  .contact-page__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  /* Технологии */
  .tech-features {
    padding: 50px 0;
  }

  .tech-features__title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .tech-features__content {
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin: 0;
  }

  .tech-features__item {
    width: 320px;
    height: 320px;
    padding: 35px;
  }

  .tech-features__item--active {
    width: 360px;
    height: 360px;
    margin: 0;
  }

  .tech-features__item-title {
    font-size: 18px;
  }

  .tech-features__item--active .tech-features__item-title {
    font-size: 16px;
  }

  .tech-features__item-description {
    font-size: 14px;
  }

  /* Как мы работаем */
  .how-we-work {
    padding: 50px 0;
  }

  .how-we-work__title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .how-we-work__content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .how-we-work__card {
    padding: 30px 20px;
    width: calc(50% - 10px);
    height: 300px;
  }

  .how-we-work__number {
    font-size: 36px;
  }

  .how-we-work__card-title {
    font-size: 16px;
  }

  .how-we-work__card-description {
    font-size: 12px;
  }

  /* Плюсы запуска сайта */
  .website-benefits {
    padding: 25px 0;
  }

  .website-benefits__title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .website-benefits__desktop {
    max-width: 80%;
  }

  .contact-page__content {
    flex-direction: column;
  }

  .contact-page__left {
    padding: 40px;
  }

  .contact-page__right {
    flex: none;
    min-height: 300px;
  }

  .contact-page__left {
    gap: 24px;
  }

  .contact-page__heading {
    font-size: 28px;
  }

  .contact-page__cta {
    font-size: 20px;
  }

  .contact-page__email,
  .contact-page__phone,
  .contact-page__address {
    font-size: 16px;
  }

  .contact-page__decoration {
    max-width: 400px;
    height: 300px;
  }

  .projects {
    padding: 50px 0;
  }

  .projects__title {
    font-size: 32px;
  }

  .projects__content {
    gap: 30px;
  }

  /* Стили для страницы хостинга на планшетах */
  .projects__cards--hosting {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-content: center;
  }

  .projects__card {
    width: 100%;
    height: auto;
    padding: 28px 20px;
    min-height: 140px;
    justify-content: flex-start;
  }

  .projects__card-content {
    gap: 16px;
    justify-content: flex-start;
  }

  .projects__card-title {
    font-size: 18px;
  }

  .projects__card-description {
    font-size: 15px;
  }

  /* Добавляем подробные описания для планшетной версии */
  .projects__card--ml .projects__card-description::after {
    content: "Обучаем камеры видеонаблюдения не просто фиксировать события, а анализировать их, распознавать образы и выявлять аномалии.";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card--webdev .projects__card-description::after {
    content: "От проектирования и дизайна до программирования и запуска — мы реализуем проекты любой сложности, которые точно отражают ценности вашего бренда и решают задачи вашей аудитории.";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card--hosting .projects__card-description::after {
    content: "Предлагаем не просто инфраструктуру, а современную экосистему спроектированную для решения реальных бизнес задач";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card-arrow {
    width: 36px;
    height: 36px;
    top: -6px;
    right: -6px;
  }

  .hero__left {
    order: -2;
  }

  .hero__right {
    order: -2;
    padding-top: 0;
    margin-bottom: 20px;
    justify-self: right;
    text-align: center;
  }

  .hero__center {
    order: -1;
  }
  .hero {
    max-height: 1000px;
  }
  .hero__watermark {
    height: 100px;
    position: absolute;
    top: 33%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .hero__center .hero__image {
    margin-top: 20px;
  }

  .promo__content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
    height: 100%;
  }
  .promo__right {
    padding-left: 0;
    padding-top: 0;
  }

  .promo__divider {
    display: none;
  }

  .promo__cta-wrap {
    display: inline-block;
  }
  .footer {
    border-radius: 0;
  }
  /* Скрываем десктопную кнопку на планшетах и мобилках */
  .promo__cta-wrap--desktop {
    display: none !important;
  }

  /* Показываем мобильную кнопку */
  .promo__cta-wrap--mobile {
    display: block !important;
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
  }

  .promo__cta-wrap--mobile .promo__cta {
    width: 100%;
    margin-left: 0;
  }

  .promo__hand-stub {
    left: 0;
    right: auto;
    top: calc(100% + 8px);
    bottom: auto;
    width: 52px;
    height: 52px;
    transform: rotate(-6deg);
  }

  /* Адаптив для блока преимуществ на планшетах */
  .advantages {
    padding: 60px 0;
  }

  .advantages__title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .advantages__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
  }

  .advantages__card {
    padding: 28px 22px;
  }

  .advantages__card-number {
    font-size: 64px;
  }

  .advantages__slider--mobile {
    max-width: 350px;
  }

  .advantages__slider .advantages__card {
    padding: 22px 18px;
  }

  .advantages__slider .advantages__card-number {
    font-size: 52px;
  }

  .advantages__slider .advantages__card-unit {
    font-size: 13px;
    max-width: 75px;
  }

  .advantages__slider .advantages__card-text {
    font-size: 14px;
  }

  .advantages::before {
    background-position: calc(50% - 30px) center;
    opacity: 0.12;
  }

  /* Адаптив для блока направлений на планшетах */
  .directions {
    padding: 60px 0;
  }

  .directions__title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .directions__card {
    padding: 35px;
    gap: 35px;
  }

  .directions__card-title {
    font-size: 28px;
  }

  .directions__card-image {
    height: 250px;
  }

  .directions__card-heading {
    font-size: 24px;
  }

  .directions__card-text {
    font-size: 17px;
  }

  /* Адаптив для блока хостинга на планшетах */
  .hero-services {
    padding: 40px 0;
  }

  /* Адаптив для блока этапов работы ML на планшетах */
  .ml-workflow {
    padding: 50px 0;
  }

  .ml-workflow__title {
    font-size: 36px;
  }

  .ml-workflow__diagram {
    min-height: 450px;
  }

  .ml-workflow__device {
    width: 150px;
    height: 150px;
  }

  .ml-workflow__icons {
    width: 300px;
    height: 300px;
  }

  .ml-workflow__step {
    padding: 22px;
  }

  .ml-workflow__step-title {
    font-size: 17px;
  }

  .ml-workflow__step-text {
    font-size: 13px;
  }

  /* Адаптив для блока преимуществ ML на планшетах */
  .ml-advantages {
    padding: 50px 0;
  }

  .ml-advantages::before {
    background-position: right center;
    background-size: 80%;
  }

  .ml-advantages__content {
    gap: 50px;
  }

  .ml-advantages__title {
    font-size: 36px;
  }

  .ml-advantages__card {
    padding: 25px;
  }

  .ml-advantages__card-title {
    font-size: 18px;
  }

  .ml-advantages__card-text {
    font-size: 15px;
  }

  .hero-services__cube {
    right: 15%;
  }

  .page-ml .hero-services__cube-ml {
    right: 60%;
  }
  .page-webdev .hero-services__cube-ml {
    right: 40%;
  }
  .hero-services::before {
    background-position: calc(70% + 10px) center;
  }
  /* Адаптив для блока обратной связи на планшетах */
  .feedback {
    padding: 60px 0;
  }

  .feedback__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feedback__left {
    padding-right: 0;
  }

  .feedback__title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .feedback__subtitle {
    font-size: 18px;
  }

  .feedback__form-container {
    padding: 30px;
    max-width: 100%;
  }

  /* Footer адаптив для планшетов */
  .footer {
    padding: 45px 0 30px;
    margin-top: 50px;
  }

  .footer__top {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer__brand {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }

  .footer__sections {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer__logo {
    width: 160px;
    height: 40px;
  }

  .footer__section-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer__email,
  .footer__phone {
    font-size: 14px;
  }

  .footer__link {
    font-size: 14px;
  }

  .footer__details p {
    font-size: 14px;
  }

  .footer__social-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
  }

  .footer__legal-link {
    font-size: 14px;
  }

  .footer__legal {
    gap: 30px;
  }

  .footer__divider {
    margin: 30px 0 25px;
  }

  /* Переключение на мобильный футер для планшетов */
  .footer--desktop {
    display: none;
  }

  .footer--mobile {
    display: block;
  }

  /* Адаптивные стили для выпадающего меню на планшетах */
  .header__dropdown-content {
    min-width: 280px;
    padding: 16px;
  }

  .header__dropdown-link {
    padding: 12px;
    gap: 12px;
  }

  .header__dropdown-icon {
    width: 40px;
    height: 40px;
  }

  .header__dropdown-icon img {
    width: 28px;
    height: 28px;
  }

  .header__dropdown-text h3 {
    font-size: 15px;
  }

  .header__dropdown-text p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  /* Blog post */
  .blog-post__grid { grid-template-columns: 1fr; grid-template-areas: "main" "aside"; }
  .blog-post__title { font-size: 28px; }
  .blog-post__thumb { height: 220px; }
  /* BLOG <=768 */
  .blog__title {
    font-size: 26px;
  }
  .blog__filters {
    gap: 8px;
  }
  .blog__cards {
    grid-template-columns: 1fr;
  }
  .blog-card__thumb {
    height: 180px;
  }
  .hero__left {
    order: 0;
  }
  .contact-page__mobile-heading {
    font-size: 25px;
  }

  /* Технологии */
  .tech-features {
    padding: 40px 0;
  }

  .tech-features__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .tech-features__content {
    flex-direction: column;
    align-items: center;
  }

  .tech-features__item {
    width: 320px;
    height: 320px;
    padding: 35px;
  }

  .tech-features__item--active {
    width: 360px;
    height: 360px;
    margin: 0;
  }

  .tech-features__item-title {
    font-size: 16px;
  }

  .tech-features__item--active .tech-features__item-title {
    font-size: 18px;
  }

  .tech-features__item-description {
    font-size: 13px;
  }

  /* Как мы работаем */
  .how-we-work {
    padding: 40px 0;
  }

  .how-we-work__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .how-we-work__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .how-we-work__card {
    padding: 30px 20px;
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .how-we-work__number {
    font-size: 32px;
  }

  .how-we-work__card-title {
    font-size: 16px;
  }

  .how-we-work__card-description {
    font-size: 13px;
  }

  /* Плюсы запуска сайта */
  .website-benefits {
    padding: 20px 0;
  }

  .website-benefits__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .website-benefits__content {
    justify-content: center;
  }

  .website-benefits__desktop {
    display: none;
  }

  .website-benefits__mobile {
    display: block;
    max-width: 100%;
  }

  /* Слайдер для секции "Почему мы" */
  .why-us__desktop {
    display: none;
  }

  .why-us__slider {
    display: block;
  }

  /* Адаптив для блока статистики ML */
  .ml-trends {
    padding: 60px 0;
  }

  .ml-trends__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .ml-trends__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ml-trends__card {
    padding: 25px 20px;
  }

  .ml-trends__card-number {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .ml-trends__card-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .ml-trends__card-text {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Адаптив для блока цен ML */
  .ml-pricing {
    padding: 50px 0;
  }

  .ml-pricing__title-main {
    font-size: 24px;
  }

  .ml-pricing__title-accent {
    font-size: 32px;
  }

  .ml-pricing__card {
    padding: 25px 20px;
    height: auto;
  }

  .ml-pricing__card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .ml-pricing__card-feature {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .ml-pricing__price-new {
    font-size: 24px;
  }

  .ml-pricing__price-old {
    font-size: 16px;
  }

  .ml-pricing__price-note {
    font-size: 12px;
  }

  .ml-pricing__card-note {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .blog {
    padding: 30px 0 40px;
  }
  .blog__title {
    font-size: 22px;
  }
  .blog__chip {
    height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }
  .blog-card {
    padding: 8px;
  }
  .blog-card__thumb {
    height: 160px;
  }
  .header__content {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .title {
    margin-left: 20px;
  }
  .not-found {
    height: 50vh;
  }
  .header__mobile-menu-item--dropdown.active .header__mobile-dropdown {
    padding: 0;
    margin: 0;
  }

  /* Компактные стили для мобильного выпадающего меню на маленьких экранах */
  .header__mobile-dropdown {
    margin: 0;
    padding: 0;
  }

  .header__mobile-dropdown-link {
    gap: 8px;
    padding: 0;
    margin-bottom: 0;
  }

  .header__mobile-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .header__mobile-dropdown-icon img {
    width: 24px;
    height: 24px;
  }

  .header__mobile-dropdown-text h3 {
    font-size: 14px;
    margin-bottom: 0;
  }

  .header__mobile-dropdown-text p {
    font-size: 12px;
  }
  .contact-page__mobile-email,
  .contact-page__mobile-phone,
  .contact-page__mobile-address {
    font-size: 15px;
  }
  .contact-page__mobile-heading {
    font-size: 14px;
  }

  /* Технологии */
  .tech-features {
    padding: 30px 0;
  }

  .tech-features__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .tech-features__item {
    width: 280px;
    height: 280px;
    padding: 30px;
  }

  .tech-features__item--active {
    width: 320px;
    height: 320px;
  }

  .tech-features__item-title {
    font-size: 16px;
  }

  .tech-features__item--active .tech-features__item-title {
    font-size: 16px;
  }

  .tech-features__item-description {
    font-size: 12px;
  }
  .not-found__button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .not-found__img {
    width: 100%;
    height: 50%;
  }
  .header__logo {
    width: 160px;
    height: 38px;
  }
  .hero__watermark {
    height: 51px;
    top: 21%;
  }
  .header__mobile-menu-link {
    font-size: 24px;
  }

  .header__mobile-menu-content {
    gap: 40px;
    padding: 30px 15px;
  }

  .header__mobile-menu-list {
    gap: 30px;
  }

  .header__mobile-button-hh {
    width: 70px;
    height: 70px;
  }

  .header__mobile-button-hh span {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .header__mobile-button-link {
    padding: 16px 32px;
    font-size: 20px;
    border-radius: 12px;
  }

  /* Увеличиваем карточки на очень маленьких экранах */
  .advantages__slider--mobile {
    max-width: 100%;
  }

  .advantages__slider .advantages__card {
    padding: 20px 18px;
  }

  .advantages__slider .advantages__card-number {
    font-size: 44px;
  }

  .advantages__slider .advantages__card-unit {
    font-size: 13px;
    max-width: 75px;
  }

  .advantages__slider .advantages__card-text {
    font-size: 13px;
  }

  /* Дополнительные стили для мобильного блока направлений на очень маленьких экранах */
  .directions__mobile-card {
    padding: 25px 15px;
    margin: 0 5px;
  }

  .directions__mobile-title {
    font-size: 20px;
  }

  .directions__mobile-image {
    height: 180px;
  }

  .directions__mobile-heading {
    font-size: 18px;
  }

  .directions__mobile-text {
    font-size: 15px;
  }

  .directions__mobile-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Адаптив для блока обратной связи на мобилках */
  .feedback {
    padding: 40px 0;
  }

  .feedback__content {
    gap: 30px;
  }

  .feedback__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .feedback__subtitle {
    font-size: 16px;
  }

  .feedback__form-container {
    padding: 20px;
  }

  .feedback__form-title {
    font-size: 20px;
    margin-bottom: 24px;
  }


  .feedback__form-input,
  .feedback__form-textarea {
    padding: 14px 16px;
    font-size: 15px;
  }

  .feedback__form-button {
    padding: 16px 24px;
    font-size: 16px;
  }

  /* Footer адаптив для маленьких мобильных устройств */
  .footer {
    padding: 35px 0 20px;
    margin-top: 35px;
  }

  .footer__top {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer__sections {
    gap: 20px;
  }

  .footer__logo {
    width: 140px;
    height: 35px;
  }

  .footer__section-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer__email,
  .footer__phone {
    font-size: 12px;
  }

  .footer__link {
    font-size: 12px;
  }

  .footer__details p {
    font-size: 12px;
  }

  .footer__social-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }

  .footer__social-icon {
    width: 16px;
    height: 16px;
  }

  .footer__legal-link {
    font-size: 12px;
  }

  .footer__legal {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .footer__divider {
    margin: 20px 0 15px;
  }

  /* Адаптив для мобильного футера на маленьких мобильных устройствах */
  .footer--mobile {
    padding: 30px 0 20px;
    margin-top: 40px;
  }

  .footer--mobile .footer__content {
    gap: 20px;
  }

  .footer__mobile-header {
    gap: 20px;
  }

  .footer__mobile-logo {
    width: 140px;
    height: 35px;
  }

  .footer__mobile-email,
  .footer__mobile-phone {
    font-size: 14px;
  }

  .footer__mobile-cta {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer__mobile-social-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer__mobile-social-link {
    width: 40px;
    height: 40px;
  }

  .footer__mobile-social-icon {
    width: 100%;
    height: 100%;
  }

  .footer__mobile-nav {
    gap: 70px;
  }

  .footer__mobile-nav-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer__mobile-nav-link {
    font-size: 14px;
  }

  .footer__mobile-company-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer__mobile-details p {
    font-size: 12px;
  }

  .footer__mobile-legal-link {
    font-size: 12px;
  }

  /* Компактное выпадающее меню для маленьких экранов */
  .header__mobile-dropdown {
    margin: 0;
    padding: 0;
  }

  .header__mobile-dropdown-link {
    gap: 8px;
    padding: 8px;
    margin-bottom: 4px;
  }

  .header__mobile-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .header__mobile-dropdown-icon img {
    width: 24px;
    height: 24px;
  }

  .header__mobile-dropdown-text h3 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .header__mobile-dropdown-text p {
    font-size: 12px;
  }
  /* Blog post */
  .blog-post { padding: 24px 0 36px; }
  .blog-post__title { font-size: 22px; }
  .blog-post__thumb { height: 180px; }
}

@keyframes handTap {
  0%,
  65%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }

  35% {
    transform: rotate(-10deg) translateY(6px);
  }
}

@keyframes ctaPress {
  0%,
  65%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 0 #00000020 inset, 0 0 0 1px #ffffff14 inset;
  }

  35% {
    transform: translateY(1px) scale(0.985);
    box-shadow: 0 1px 0 #00000020 inset, 0 0 0 1px #ffffff14 inset,
      0 4px 16px rgba(225, 93, 10, 0.2);
  }
}

/* Эффект печати для «РАЗРАБОТКА САЙТОВ» */
@keyframes typeText {
  from {
    width: 0;
  }

  to {
    width: 17ch;
  }
}

@keyframes cursorBlink {
  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: var(--dark-gray);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__left .hero__list .hero__typewriter-text {
    animation: none;
    border-right: none;
  }
}

/* Плавное вертикальное движение куба */
@keyframes cubeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Плавное вертикальное движение картинок в блоке directions */
@keyframes directionsFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Эффект появления элементов при скролле */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Варианты анимации для разных направлений */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero__center .hero__image-img {
    animation: none;
  }

  .directions__card-img {
    animation: none;
  }

  .directions__mobile-img {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .header__content {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .not-found {
    padding: 40px 0;
  }

  .not-found__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .not-found__text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .not-found__button {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Контакты */
  .contact-page__left {
    padding: 24px 16px;
  }

  .contact-page__right {
    min-height: 200px;
  }

  .contact-page__heading {
    font-size: 20px;
  }

  .contact-page__cta {
    font-size: 16px;
  }

  .contact-page__email,
  .contact-page__phone,
  .contact-page__address {
    font-size: 14px;
  }

  .contact-page__decoration {
    max-width: 250px;
    height: 200px;
  }

  .projects {
    padding: 40px 0;
  }

  .projects__title {
    font-size: 28px;
  }

  .projects__content {
    gap: 24px;
  }

  .projects__card {
    width: 100%;
    height: auto;
    padding: 24px 16px;
    min-height: 120px;
    justify-content: flex-start;
  }

  .projects__card-content {
    gap: 16px;
    justify-content: flex-start;
  }

  .projects__card-title {
    font-size: 20px;
  }

  .projects__card-description {
    font-size: 15px;
  }

  .projects__card--ml .projects__card-description::after {
    content: "Обучаем камеры видеонаблюдения не просто фиксировать события, а анализировать их, распознавать образы и выявлять аномалии.";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card--webdev .projects__card-description::after {
    content: "От проектирования и дизайна до программирования и запуска — мы реализуем проекты любой сложности, которые точно отражают ценности вашего бренда и решают задачи вашей аудитории.";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card--hosting .projects__card-description::after {
    content: "Предлагаем не просто инфраструктуру, а современную экосистему спроектированную для решения реальных бизнес задач";
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    font-weight: 400;
  }

  .projects__card-arrow {
    width: 32px;
    height: 32px;
    top: -4px;
    right: -4px;
  }

  .projects__card-arrow svg {
    width: 14px;
    height: 14px;
  }

  /* Адаптив для блока хостинга на очень маленьких экранах */
  .hero-services {
    padding: 20px 0;
  }

  .hero-services__cube {
    width: 40%;
    right: 5%;
    top: -32%;
  }

  .page-ml .hero-services__cube-ml {
    width: 43%;
    right: 50%;
    top: 20%;
  }
  .page-webdev .hero-services__cube-ml {
    width: 55%;
    right: 30%;
    top: 20%;
  }
  .page-webdev .hero-services {
    height: 34vh;
  }
  /* Адаптив для блока описания хостинга на очень маленьких экранах */
  .hosting-description {
    padding: 30px 0;
  }

  /* Адаптив для блока этапов работы ML на очень маленьких экранах */
  .ml-workflow {
    padding: 30px 0;
  }

  .ml-workflow__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .ml-workflow__diagram {
    min-height: 350px;
  }

  .ml-workflow__device {
    width: 100px;
    height: 100px;
  }

  .ml-workflow__step {
    padding: 18px;
  }

  .ml-workflow__step-title {
    font-size: 14px;
  }

  .ml-workflow__step-text {
    font-size: 15px;
  }
  .about-hero__subtitle span{
    font-size: 24px;
  }
  .ml-workflow__button {
    font-size: 14px;
    padding: 10px 25px;
  }

  /* Адаптив для блока статистики ML */
  .ml-trends__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .ml-trends__card {
    padding: 30px 25px;
  }

  .ml-trends__card-title {
    font-size: 18px;
  }

  .ml-trends__card-text {
    font-size: 14px;
  }

  /* Адаптив для блока цен ML на очень маленьких экранах */
  .ml-pricing {
    padding: 40px 0;
  }

  .ml-pricing__title-main {
    font-size: 20px;
  }

  .ml-pricing__title-accent {
    font-size: 28px;
  }

  .ml-pricing__card {
    padding: 20px 15px;
    height: auto;
  }

  .ml-pricing__card-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .ml-pricing__card-feature {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ml-pricing__price-new {
    font-size: 20px;
  }

  .ml-pricing__price-old {
    font-size: 14px;
  }

  .ml-pricing__price-note {
    font-size: 11px;
  }

  .ml-pricing__card-note {
    font-size: 12px;
  }

  /* Адаптив для блока преимуществ ML на очень маленьких экранах */
  .ml-advantages {
    padding: 30px 0;
  }

  .ml-advantages::before {
    display: none;
  }

  .ml-advantages__content {
    gap: 30px;
  }

  .ml-advantages__title {
    font-size: 28px;
  }

  .ml-advantages__cards {
    gap: 20px;
  }

  .ml-advantages__card {
    padding: 18px;
  }

  .ml-advantages__card-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .ml-advantages__card-title {
    font-size: 16px;
  }

  .ml-advantages__card-text {
    font-size: 15px;
  }

  .ml-advantages__card-cursor {
    width: 20px;
    height: 20px;
    bottom: 15px;
    right: 15px;
  }
  .ml-advantages__card{
    align-items: start;
  }
  .ml-advantages__card-cursor::before {
    font-size: 12px;
  }

  .hosting-description__content {
    gap: 25px;
  }

  .hosting-description__title {
    font-size: 28px;
  }

  .hosting-description__text {
    font-size: 15px;
  }

  .hosting-description__button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .hero-services {
    height: 25vh;
  }

  /* Адаптив для баннера хостинга на очень маленьких экранах */
  .hosting-banner {
    padding: 30px 0;
  }

  .hosting-banner__content {
    gap: 25px;
  }

  .hosting-banner__left {
    gap: 15px;
  }

  .hosting-banner__text {
    font-size: 14px;
  }

  .hosting-banner__graphic {
    max-width: 300px;
  }

  /* Адаптив для мобильного слайдера на очень маленьких экранах */
  .hosting-advantages__title {
    font-size: 28px;
  }

  .hosting-advantages__slider {
    width: 100%;
  }

  .hosting-advantages__slider .hosting-advantages__card {
    padding: 30px 20px;
    min-height: 180px;
  }

  .hosting-advantages__slider .hosting-advantages__card-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hosting-advantages__slider .hosting-advantages__card-text {
    font-size: 14px;
  }

  /* Как мы работаем */
  .how-we-work {
    padding: 30px 0;
  }

  .how-we-work__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .how-we-work__content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .how-we-work__card {
    padding: 25px 20px;
    width: 100%;
    height: auto;
    min-height: 250px;
    margin-top: 0 !important;
  }

  .how-we-work__number {
    font-size: 28px;
  }

  .how-we-work__card-title {
    font-size: 16px;
  }

  .how-we-work__card-description {
    font-size: 12px;
  }

  /* Плюсы запуска сайта */
  .website-benefits {
    padding: 30px 0;
  }

  .website-benefits__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
