@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
   --bg: #010101;
   --text: #f5f7fb;
   --muted: #9aa1a9;
   --accent: #5a3acd;
   --line: #191919;
}
section {
   overflow: hidden;
}
* {
   box-sizing: border-box;
}
body {
   margin: 0;
   background: var(--bg);
   color: var(--text);
   font: 16px/1.55 Inter, system-ui, Segoe UI, Arial;
}

.hiw {
   --line-w: 2px; /* толщина центральной линии */
   --gap: 64px; /* отступ карточки от линии */
   margin: 0 auto;
   padding: 64px 0;
   position: relative;
   min-height: 100vh;
}

/* линия и прогресс */
.hiw__line {
   position: absolute;
   inset: 0 auto 0 50%;
   transform: translateX(-50%);
   width: var(--line-w);
   background: var(--line);
   border-radius: 999px;
   overflow: hidden;
}
.hiw__progress {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 0;
   background: rgba(255, 255, 255, 0.35);
   border-radius: 999px;
   box-shadow: none; /* без свечения */
}

/* шаг */
.hiw__item {
   position: relative;
   min-height: 240px;
   padding: 80px 0;
}

/* точка — без свечения во всех состояниях */
.hiw__dot {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: #2a2a2a;
   z-index: 2;
   box-shadow: none; /* 🔕 off glow */
   transition: transform 0.35s ease, background 0.35s ease;
}
.hiw__item.is-visible .hiw__dot {
   background: #fff;
   transform: translate(-50%, -50%) scale(1.1);
   box-shadow: none; /* 🔕 off glow */
}
.hiw__item.is-active .hiw__dot {
   background: #844ee2; /* можно заменить на var(--accent) при желании */
   box-shadow: none; /* 🔕 off glow */
}

/* карточка (без рамок/свечения, мягкий выезд снизу) */
.hiw__card {
   position: absolute;
   top: 50%;
   left: calc(50% + var(--gap));
   width: clamp(280px, 42vw, 520px);
   padding: 0;
   max-width: 332px;
   background: transparent;
   border: 0;
   border-radius: 0;
   box-shadow: none;

   opacity: 0;
   transform: translateY(calc(-50% + 28px)); /* старт ниже точки */
   transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* чередуем стороны */
.hiw__item:nth-of-type(odd) .hiw__card {
   left: auto;
   right: calc(50% + var(--gap));
}

/* тексты */
.hiw__eyebrow {
   margin: 0 0 4px;
   font: 600 12px/1 Inter, system-ui;
   letter-spacing: 0.04em;
   color: var(--accent);
}
.hiw__title-head {
   font-size: 48px;
   font-weight: 700;
   line-height: 120%;
   color: #eeeae7;
   text-align: center;
   text-transform: uppercase;
   margin: 0 0 180px;
}
.hiw__title {
   margin: 0 0 6px;
   font: 600 28px/1.25 Inter, system-ui;
}
.hiw__text {
   margin: 0;
   color: var(--muted);
}

/* когда элемент видим — карточка «приехала» и появилась */
.hiw__item.is-visible .hiw__card {
   opacity: 1;
   transform: translateY(-50%);
}

/* активный шаг — без теней у карточки */
.hiw__item.is-active .hiw__card {
   box-shadow: none;
}

/* мобильная версия: карточки под линией по центру, анимация та же */
@media (max-width: 768px) {
   .hiw {
      --gap: 28px;
   }
   .hiw__card {
      left: 50%;
      right: auto;
      width: min(92vw, 560px);
      transform: translate(-50%, calc(-50% + 28px));
      text-align: center;
   }
   .hiw__item:nth-of-type(odd) .hiw__card {
      right: auto;
   }
   .hiw__item.is-visible .hiw__card {
      transform: translate(-50%, -50%);
   }
}

/* уважение к reduce motion */
@media (prefers-reduced-motion: reduce) {
   .hiw__card,
   .hiw__dot {
      transition: none;
   }
}

/* точки — без свечения всегда */
.hiw__dot {
   box-shadow: none;
}

/* карточки по умолчанию скрыты; показываем ТОЛЬКО у активного шага */
.hiw__item .hiw__card {
   opacity: 0;
   transform: translateY(calc(-50% + 28px));
}
.hiw__item.is-visible .hiw__card {
   opacity: 1;
   transform: translateY(-50%);
}

/* прогресс — без свечения */
.hiw__progress {
   box-shadow: none;
}
/* ===== Mobile layout: line on the left, cards on the right ===== */
@media (max-width: 768px) {
   .hiw {
      --gap: 30px; /* отступ карточки от линии */
      --line-x: 24px; /* позиция линии от левого края секции */
   }
   .hiw__container {
      padding: 0 20px;
   }
   /* линия слева */
   .hiw__line {
      left: var(--line-x);
      right: auto;
      transform: none; /* убираем translateX(-50%) */
   }

   /* точки на линии слева */
   .hiw__dot {
      left: calc(var(--line-x) - 19px);
      transform: translate(-50%, -50%);
   }

   /* ВСЕ карточки справа от линии (чередование отключаем) */
   .hiw__card {
      left: calc(var(--line-x) + var(--gap));
      right: auto;
      width: calc(
         100% - (var(--line-x) + var(--gap) + 20px)
      ); /* 20px = правый внутренний паддинг секции */
      max-width: none;
      text-align: left; /* или center — как тебе нужно */
      transform: translateY(
         calc(-50% + 28px)
      ); /* старт анимации как и раньше */
   }
   .hiw__item:nth-of-type(odd) .hiw__card {
      left: calc(var(--line-x) + var(--gap));
      right: auto;
   }

   /* финальное положение при появлении */
   .hiw__item.is-visible .hiw__card {
      transform: translateY(-50%);
   }
}

/*Animated head*/
/* переменная для силы блюра */
:root {
   --blur-hero: 54px;
}

/* базовое */

/* ===== HERO ===== */
.hero,
.book {
   position: relative;
   min-height: calc(var(--vh) * 100);
   overflow: hidden;
   isolation: isolate; /* корректная слоистость */
}

/* Голова «на весь экран» */
.hero__stage {
   position: relative;
   height: calc(var(--vh) * 100);
   display: grid;
   place-items: center;
   z-index: 3; /* между лентами */
   padding: 0;
}
.hero__headwrap {
   width: 100vw;
   height: calc(var(--vh) * 100);
   display: grid;
   place-items: center;
   opacity: 0;
   transform: translateY(60px) scale(1.02);
   will-change: transform, opacity;
}
.hero__headwrap.is-in {
   animation: head-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes head-in {
   from {
      opacity: 0;
      transform: translateY(60px) scale(1.02);
   }
   to {
      opacity: 1;
      transform: translateY(0) scale(1);
   }
}
.hero__head {
   height: 100%;
   width: auto; /* по высоте вьюпорта */
   max-width: none;
   object-fit: contain;
   object-position: center;
   -webkit-mask-image: radial-gradient(
      125% 110% at 50% 42%,
      #000 70%,
      transparent 100%
   );
   mask-image: radial-gradient(
      125% 110% at 50% 42%,
      #000 70%,
      transparent 100%
   );
   filter: drop-shadow(0 20px 80px rgba(0, 0, 0, 0.55));
}

/* ===== ЛЕНТЫ (2 шт «крестом», снизу вверх) ===== */
.tape {
   position: absolute;
   left: -18vw;
   right: -18vw;
   display: flex;
   gap: 0;
   overflow: hidden;
   backdrop-filter: blur(var(--blur-hero)) saturate(120%);

   pointer-events: none;
   user-select: none;
   white-space: nowrap;
   -webkit-mask-image: linear-gradient(
      to right,
      transparent 0 3%,
      #000 10% 90%,
      transparent 97% 100%
   );
   mask-image: linear-gradient(
      to right,
      transparent 0 3%,
      #000 10% 90%,
      transparent 97% 100%
   );
}
/* фон ленты + BLUR 54px */
.tape::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(14, 14, 14, 0.8);
   -webkit-backdrop-filter: blur(var(--blur-hero)) saturate(120%);
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) inset,
      0 10px 40px rgba(0, 0, 0, 0.35);
}
.hero__overlay,
.tariff__overlay,
.stategy__overlay,
.stariff__overlay,
.hiw__overlay {
   background: url("bg-overlay.png") center / cover no-repeat;
   /* opacity: 0.22; */
   position: absolute;
   width: 100%;
   height: 100%;
   bottom: 0;
   z-index: 5;
}
/* позиционирование и слои */
.tape--back {
   bottom: 250px; /* старт у нижнего края */
   transform: rotate(-11deg); /* нижн-лево -> верх-право */
   z-index: 4; /* ЗА головой */
   height: 80px;
}
.tape--front {
   bottom: 250px;
   transform: rotate(11deg); /* нижн-право -> верх-лево */
   z-index: 2; /* ПЕРЕД головой */
   height: 120px;
}

/* ===== JS-ТИКЕР (вместо CSS-анимаций) ===== */
.ticker {
   display: flex;
   align-items: center;
   will-change: transform; /* смещается из JS */
   transform: translate3d(0, 0, 0);
   will-change: transform;
}
.ticker__item {
   display: inline-flex;
   align-items: center;
   gap: 100px;
}
.ticker__word {
   font-weight: 400;
   color: #fff;
   text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
/* размеры текста для передней/задней ленты */
.tape--front .ticker__word {
   font-size: 82px;
}
.tape--back .ticker__word {
   font-size: 54px;
}

.ticker__star {
   font-style: normal;
   opacity: 0.45;
   transform: translateY(-0.08em) scale(1.05);
}

/* доступность */
@media (prefers-reduced-motion: reduce) {
   .hero__headwrap {
      animation: none !important;
      transform: none !important;
      opacity: 1 !important;
   }
}

/* ==== CTA: точный размер 172px + внешнее свечение ==== */
:root {
   --cta-size: 172px; /* фиксированный размер кнопки */
   --cta-glow: #8f4dff; /* цвет свечения */
}

/* контейнер CTA (остаётся поверх ленты) */
.cta {
   position: absolute;
   left: 50%;
   bottom: 48px; /* подгони при необходимости */
   transform: translateX(-50%);
   z-index: 6; /* сама кнопка над лентой */
   pointer-events: auto;
}

.cta::before {
   content: "";
   position: absolute;
   left: 50%;
   top: 50%;
   width: calc(var(--cta-size) * 2);
   height: calc(var(--cta-size) * 2);
   transform: translate(-50%, -50%);
   border-radius: 50%;
   background: radial-gradient(
      closest-side,
      rgba(143, 77, 255, 0.55),
      rgba(143, 77, 255, 0) 72%
   );
   filter: blur(20px);
   z-index: 0; /* свечение под кнопкой */
   pointer-events: none;
}

/* сам круг кнопки — ровно 172px */
.cta__btn {
   position: relative;
   width: var(--cta-size);
   height: var(--cta-size);
   border-radius: 50%;
   background: var(--bg); /* чёрный круг */
   color: #fff;
   display: grid;
   place-items: center;
   cursor: pointer;
   outline: none;
   border: 0;
   box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
   z-index: 1; /* выше свечения (::before контейнера) */
}

/* текстовое кольцо */
.cta__ring {
   position: absolute;
   inset: 0;
   width: 90%;
   height: 90%;
   transform-origin: 50% 50%;
   animation: cta-spin 18s linear infinite;
   will-change: transform;
   left: 8.5px;
   top: 7.5px;
}
.cta__text {
   font-size: 16px; /* в 172px выглядит как в макете */
   font-weight: 600;
   letter-spacing: 0.18em;
   fill: #fff;
   opacity: 0.95;
}

/* стрелка по центру */
.cta__arrow {
   width: 40%;
   height: 40%;
   color: #fff;
}

/* ускорение при hover (по желанию) */
.cta__btn:hover .cta__ring {
   animation-duration: 8s;
}

@keyframes cta-spin {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(360deg);
   }
}

/* уважение к reduce-motion */
@media (prefers-reduced-motion: reduce) {
   .cta__ring {
      animation: none;
   }
}

.header {
   padding: 15px 30px;
   position: absolute;
   width: 100%;
   z-index: 5;
}
.header__wrapper {
   display: flex;
   justify-content: center;
   align-items: center;
}
.header__info {
   display: flex;
   align-items: center;
   gap: 250px;
}
.header__info a {
   color: #fff;
   text-decoration: none;
   font-size: 15px;
   font-weight: 500;
}
.header__burger {
   width: 36px;
   height: 8px;
   position: relative;
}
.header__burger span {
   position: absolute;
   top: 0;
   background: #fff;
   width: 100%;
   height: 2px;
}
.header__burger span:last-of-type {
   bottom: 0;
   top: unset;
}
.header__logo {
   width: 150px;
   height: 40px;
}
.header__logo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
@media (max-width: 768px) {
   .header__info {
      gap: 100px;
   }
   /* передняя лента выше */
   .tape--front {
      /* чем уже экран, тем больше bottom => лента выше */
      bottom: clamp(220px, calc(420px - 20vw), 380px);
   }
   /* задняя лента чуть ниже передней */
   .tape--back {
      bottom: clamp(190px, calc(380px - 20vw), 350px);
   }
   .hero__head {
      width: 100%;
   }
   :root {
      --cta-size: 140px; /* фиксированный размер кнопки */
   }
   .cta__ring {
      width: 90%;
      height: 90%;
      left: 7px;
      top: 6px;
   }
   .cta__arrow {
      width: 30%;
      height: 30%;
   }
   .tape--back {
      height: 60px;
   }
   .tape--back .ticker__word {
      font-size: 40px;
   }
   .ticker__item {
      gap: 60px;
   }
   .tape--front {
      height: 90px;
   }
   .tape--front .ticker__word {
      font-size: 60px;
   }
}
@media (max-width: 490px) {
   .header__info {
      gap: 50px;
   }
   .header__logo {
      width: 90px;
      height: 30px;
   }
   .header__logo img {
      object-fit: contain;
   }
   :root {
      --cta-size: 120px; /* фиксированный размер кнопки */
   }
}
@media (max-width: 400px) {
   .header__info {
      gap: 10px;
   }
}

/* фон для секции с книгами */
.book .hero__overlay {
   background: url("stars.png") center / cover no-repeat;
   position: absolute;
   width: 100%;
   height: 100%;
   bottom: 0;
   z-index: 5;
}
.book {
   padding: 25px 0 350px;
   position: relative;
}
.book__bg {
   position: absolute;
   background: url("book-bg.png") no-repeat center / cover;
   width: 100%;
   height: 100%;
   bottom: 0;
   display: block;
   z-index: 0;
}
.book__desc {
   max-width: 1231px;
   margin: 0 auto;
   position: absolute;
   left: 50%;
   width: 100%;
   bottom: 180px;
   transform: translate(-50%, 0);
}
.book__desc-text {
   font-size: 24px;
   font-weight: 400;
   padding: 0 10px;
   color: rgba(255, 255, 255, 0.6);
}
.book__desc-text span {
   font-weight: 600;
   color: #eeeae7;
}
.book .hero__stage {
   z-index: -1;
}

/* Голова с книгой */
.book .hero__head {
   height: auto;
   max-width: 100%;
   object-fit: contain;
   object-position: center;
   -webkit-mask-image: unset;
   mask-image: unset;
   filter: unset;
}
/* Лента, расположенная за книгой */
.book .tape--back {
   bottom: 35%; /* Сделаем ленту выше книги, но пропорционально адаптируется */
}

/* Лента, расположенная перед книгой */
.book .tape--front {
   bottom: 35%; /* Лента перед книгой, также адаптируется пропорционально */
}
.book__title {
   font-size: 64px;
   font-weight: 600;
   letter-spacing: -1.2px;
   line-height: 120%;
   text-align: center;
   text-transform: uppercase;
   color: #844ee2;
   margin: 0;
}
.book__title span {
   color: #eeeae7;
}
/* лента за книгой (аналогично первой) */
.book .tape {
   position: absolute;
   left: -18vw;
   right: -18vw;
   display: flex;
   gap: 0;
   overflow: hidden;
   backdrop-filter: blur(var(--blur-hero)) saturate(120%);
   pointer-events: none;
   user-select: none;
   white-space: nowrap;
   -webkit-mask-image: linear-gradient(
      to right,
      transparent 0 3%,
      #000 10% 90%,
      transparent 97% 100%
   );
   mask-image: linear-gradient(
      to right,
      transparent 0 3%,
      #000 10% 90%,
      transparent 97% 100%
   );
}
.book .tape::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(132, 78, 226, 1) 20%,
      rgba(132, 78, 226, 1) 80%,
      rgba(0, 0, 0, 1) 100%
   );
   -webkit-backdrop-filter: blur(var(--blur-hero)) saturate(120%);
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) inset,
      0 10px 40px rgba(0, 0, 0, 0.35);
}

/* размер текста в лентах */
.book .tape--back .ticker__word {
   font-size: 54px;
}
.book .tape--front .ticker__word {
   font-size: 82px;
}

/* CTA: круглая кнопка для книги */
.book .cta {
   position: absolute;
   left: 50%;
   bottom: 20px;
   transform: translateX(-50%);
   z-index: 6;
   pointer-events: auto;
}
.book .cta::before {
   content: none;
}
.book .cta__btn {
   position: relative;
   width: var(--cta-size);
   height: var(--cta-size);
   border-radius: 50%;
   background: linear-gradient(
      0deg,
      rgba(90, 58, 205, 1) 100%,
      rgba(115, 68, 196, 1) 0%
   );
   color: #fff;
   display: grid;
   place-items: center;
   cursor: pointer;
   outline: none;
   border: 0;
   z-index: 1;
}

/* вращающееся кольцо и стрелка */
.book .cta__ring {
   position: absolute;
   inset: 0;
   width: 90%;
   height: 90%;
   left: 8.5px;
   top: 7.5px;
   transform-origin: 50% 50%;
   animation: cta-spin 18s linear infinite;
}
.book::before {
   content: "";
   background: url("book-bg-purple.png") center / cover;
   width: 100%;
   height: 100%;
   display: block;
   position: absolute;
   left: 50%;
   top: 50px;
   transform: translate(-50%, 0);
   z-index: -1;
}
.book .cta__text {
   font-size: 16px;
   font-weight: 600;
   letter-spacing: 0.115em;
   fill: #fff;
   opacity: 0.95;
}

.book .cta__arrow {
   width: 40%;
   height: 40%;
}
.book .cta__arrow img {
   width: 100%;
   height: 100%;
}
@media (max-width: 768px) {
   .book__desc-text {
      font-size: 18px;
      text-align: center;
   }
   .book .cta__ring {
      left: 6.5px;
   }
   .book {
      padding: 25px 0 250px;
   }
   .book .hero__head {
      width: 100%;
   }
   .book .tape--back .ticker__word {
      font-size: 30px;
   }
   .book .tape--front .ticker__word {
      font-size: 50px;
   }
   .book .tape--back {
      height: 50px;
   }
   .book .tape--front {
      height: 70px;
   }
}
@media (max-width: 490px) {
   .book .tape--back {
      bottom: 40%;
   }
   .book .tape--front {
      bottom: 40%;
   }
   .book__title {
      font-size: 42px;
      position: absolute;
   }
   .book .cta__ring {
      top: 5.5px;
   }
}
/* hover-ускорение */
.book .cta__btn:hover .cta__ring {
   animation-duration: 8s;
}

@keyframes cta-spin {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(360deg);
   }
}

.exp {
   padding: 60px 0 350px;
   background: url("/exp-bg.png") no-repeat center / cover, #040408;
   position: relative;
   overflow: hidden;
}
.exp__overlay {
   background: url("/exp-top-bg.png") no-repeat center / cover;
   position: absolute;
   z-index: 1;
   bottom: 0;
   width: 100vw;
   height: 100%;
}
.exp p {
   margin: 0;
   padding: 0;
}
.exp__title {
   text-align: center;
   font-weight: 600;
   font-size: 72px;
   margin: 0;
   line-height: normal;
   color: #eeeae7;
}
.exp__container {
   max-width: 1250px;
   margin: 0 auto;
   padding: 0 10px;
}
.exp__wrapper {
   margin-top: 65px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   row-gap: 58px;
}

.exp__card {
   display: flex;
   gap: 12px;
   padding: 20px;
   border-radius: 20px;
   background: url("exp-card.png") no-repeat center center / cover;
   max-width: fit-content;
   width: 100%;
   align-items: end;
}
.exp__card p {
   font-size: 24px;
   font-weight: 500;
   line-height: 108%;
   color: #eeeae7;
}
.exp__wrap-left .exp__card:nth-child(1) p {
   max-width: 350px;
}
.exp__wrap-left .exp__card:nth-child(2) p {
   max-width: 310px;
}
.exp__wrap-right {
   max-width: 410px;
}
.exp__wrap-right .exp__card {
   flex-direction: row-reverse;
   gap: 24px;
}
.exp__wrap-right .exp__card img {
   transform: rotate(90deg);
}
.exp__wrap-left,
.exp__wrap-right {
   display: flex;
   flex-direction: column;
   gap: 58px;
}
.exp__wrap-right {
   margin-left: auto;
}
.exp__frame {
   bottom: 60px;
   width: calc(100vw + 15px);
   position: absolute;
   text-align: center;
   left: 50%;
   padding: 15px 0;
   background: url("frame-bg.png") center / cover;
   transform: rotate(3.88deg) translate(-50%, 0);
}
.exp__frame::after {
   content: "";
   background: url("frame-top-bg.png") center center / cover;
   width: calc(100vw + 15px);
   height: 100%;
   display: block;
   position: absolute;
   bottom: 0;
   left: 50%;
   z-index: 2;
   transform: translate(-50%, 0);
}
.exp__frame-heading {
   margin: 0 auto;
}

.exp__frame-title {
   font-size: 55px;
   font-weight: 700;
   line-height: 100%;
   text-transform: uppercase;
   margin: 0 0 12px 0;
}
.exp__frame-desc {
   font-size: 24px;
   font-weight: 600;
   line-height: 150%;
   margin: 0;
   padding: 0;
}

@media (max-width: 991.98px) {
   .exp__wrapper {
      grid-template-columns: 1fr;
   }
   .exp__frame-heading {
      padding: 20px;
   }
}
@media (max-width: 767.98px) {
   .exp__frame-heading {
      padding: 10px;
   }
   .exp__title {
      font-size: 58px;
   }
   .exp__wrap-left,
   .exp__wrap-right {
      margin: 0 auto;
   }
   .exp__card {
      text-align: center;
      flex-direction: column;
      align-items: center;
      max-width: unset;
      gap: 20px;
   }
   .exp__card p {
      font-size: 18px;
   }
   .exp__wrap-left .exp__card:nth-child(1) p,
   .exp__wrap-left .exp__card:nth-child(2) p {
      max-width: unset;
   }
   .exp__wrap-left,
   .exp__wrap-right {
      max-width: 400px;
      gap: 25px;
   }
   .exp__wrapper {
      gap: 25px;
   }
   .exp__card img {
      transform: rotate(45deg);
   }
   .exp__wrap-right .exp__card {
      flex-direction: column;
      gap: 20px;
   }
   .exp__wrap-right .exp__card img {
      transform: rotate(45deg);
   }
   .exp__frame-title {
      font-size: 38px;
   }
   .exp__frame-desc {
      font-size: 18px;
   }
}
@media (max-width: 489.98px) {
   .exp__title {
      font-size: 32px;
   }
}

.questions {
   padding: 64px 0 115px;
   background: url(/backgroundforQuest.png) no-repeat center / cover, #040408;
   position: relative;
   overflow: hidden;
}
.questions .cta__arrow img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.questions .cta__btn {
   background: linear-gradient(
      0deg,
      rgba(90, 58, 205, 1) 100%,
      rgba(115, 68, 196, 1) 0%
   );
}
.questions .cta__text {
   text-transform: uppercase;
   letter-spacing: 0.256em;
   word-spacing: 2em;
}
.questions__container {
}
.questions__body {
   display: flex;
   justify-content: center;
   gap: 60px;
}
.questions__column {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 20px;
   padding-left: 25px;
}
.questions__title {
   font-family: "Inter Tight";
   font-weight: 500;
   margin: 0px;
   font-style: Medium;
   font-size: 72px;
   line-height: 120%;
   letter-spacing: 0%;
   text-transform: uppercase;
}
.questions__text {
   font-family: "Inter Tight";
   font-weight: 400;
   font-style: Regular;
   font-size: 24px;
   line-height: 24px;
   letter-spacing: -0.4px;
   vertical-align: middle;
   color: rgba(255, 255, 255, 0.6);
   max-width: 490px;
   margin: 36px 0;
}
.questions__text span {
   font-weight: 600;
   color: #eeeae7;
}
.cta2 {
   /* position: absolute; */
   position: static;
   bottom: 48px;
   left: none;
   transform: none;
   /* transform: translateX(-50%); */
   z-index: 6;
   pointer-events: auto;
}
.cta__btn {
}
.cta__ring {
}
.cta__text {
}
.cta__arrow {
}
.questions__image {
}
.stariff__wrapper {
   position: relative;
   overflow: hidden;
}
.stariff__overlay {
   background: url("stariff-bg.png") no-repeat center / contain;
   width: 100%;
   height: 100%;
   right: -37%;
   top: 36%;
   transform: translate(0%, -50%);
   z-index: 1;
}
.strategy {
   padding: 150px 0;
   background: #020203;
}
.stategy__overlay {
   background: url("strategy-bg.png") no-repeat center / contain;
   z-index: 0;
}
.strategy__container {
   max-width: 1300px;
   margin: 0 auto;
}
.strategy__body {
   display: flex;
   padding: 0px 25px;
   align-items: center;
   justify-content: center;
   gap: 100px;
}
.strategy__column {
   display: flex;
   align-items: flex-start;
   gap: 20px;
   flex-direction: column;
   max-width: 490px;
}
.strategy__title {
   font-family: "Inter Tight";
   font-weight: 600;
   font-style: SemiBold;
   font-size: 74.39px;
   line-height: 100%;
   letter-spacing: 2%;
   text-transform: uppercase;
   margin: 0px;
}
.strategy__title span {
   color: #844ee2;
}
.strategy__text {
   font-family: "Inter Tight";
   font-weight: 400;
   font-style: Regular;
   font-size: 24px;
   line-height: 24px;
   letter-spacing: -0.4px;
   vertical-align: middle;
   color: rgba(238, 234, 231, 0.6);
}
.strategy__text span {
   color: #eeeae7;
   font-weight: 600;
}
.strategy__aside {
   display: flex;
   flex-direction: column;
   gap: 50px;
}
.strategy__item {
   display: flex;
   z-index: 1;
   gap: 20px;
   border-radius: 10px;
   align-items: center;
   background: #11110f94;
   border: 2px solid #a9a2a273;
   padding: 0px 20px;
}
.rotated {
   transform: rotate(352deg);
}
.strategy__img {
}
.strategy__item-title {
   font-family: Inter Tight;
   font-weight: 700;
   font-style: Bold;
   font-size: 26px;
   leading-trim: NONE;
   line-height: 109.00000000000001%;
   letter-spacing: 1%;
}

.tariff {
   padding: 65px 0;
   position: relative;
}
.tariff__container {
   max-width: 1370px;
   margin: 0 auto;
   padding: 15px;
}
.tariff__body {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 50px;
   flex-direction: column;
}
.tariff__overlay {
   background: url("tariff-bg.png") no-repeat center / cover;
   z-index: 0;
}
.tariff__title {
   margin: 0;
   font-weight: 700;
   line-height: 120%;
   font-size: 52px;
   color: #eeeae7;
   max-width: 940px;
   text-transform: uppercase;
   text-align: center;
}
.tariff__row {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   flex-wrap: wrap;
}
.tariff__item {
   background: linear-gradient(
      -151deg,
      rgba(8, 8, 8, 0.8) 0%,
      rgba(17, 17, 17, 0.8) 100%
   );
   border: 0.8px solid #ffffff1a;
   padding: 30px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 80px;
   justify-content: center;
   border-radius: 20px;
}
.tariff__titleColumn {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 30px;
}
.tariff__subtitle {
   font-family: "Inter Tight";
   font-weight: 600;
   font-style: SemiBold;
   font-size: 51.26px;
   margin: 0;
   leading-trim: CAP_HEIGHT;
   line-height: 100%;
   letter-spacing: 0%;
}
.tariff__list {
   display: flex;
   flex-direction: column;
   gap: 30px;
}
.tarif {
   display: flex;
   font-family: "Inter Tight";
   font-weight: 500;
   font-style: Medium;
   gap: 20px;
   font-size: 19.22px;
   leading-trim: NONE;
   line-height: 100%;
   max-width: 350px;
   list-style: none;
   letter-spacing: -2%;
}
.line {
   border: 1px solid #9aa1a9;
   opacity: 0.2;
}
.tariff__cost {
   font-family: "Inter Tight";
   font-weight: 600;
   font-style: SemiBold;
   font-size: 52px;
   margin: 0px;
   line-height: 140%;
   letter-spacing: 0%;
}
.tariff__cost span {
   font-size: 28px;
   text-transform: uppercase;
}
.tariff__item.itemBig {
   background: #844ee2;
   padding: 40px;
}
.tariff__button {
   font-family: "Inter Tight";
   font-weight: 600;
   font-style: SemiBold;
   font-size: 16.02px;
   leading-trim: NONE;
   line-height: 120%;
   letter-spacing: 0%;
   text-align: center;
   text-transform: uppercase;
   color: #010101;
   padding: 24px 122px;
   text-decoration: none;
   border-radius: 100px;
   background: #ffffff;
   transition: all 0.5s ease 0s;
   z-index: 2;
}
.tariff__group {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}
.tariff__button:hover {
   background-color: #8f4dff;
   color: #010101;
}
ul {
   padding: 0;
   margin: 0;
}
ul li {
   list-style: none;
}
ul li a {
   text-decoration: none;
}

.footer {
   padding: 30px;
   border-radius: 18px;
   background: #040408;
}
.footer__container {
   max-width: 1350px;
   margin: 0 auto;
}
.footer__wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 30px;
}
.footer__list {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 7.5px;
}
.footer__list a {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   padding: 9px 11px;
   border-radius: 13.5px;
   color: rgba(238, 234, 231, 0.6);
   transition: all 0.5s ease;
   font-weight: 500;
   font-size: 15px;
}
.footer__list a img {
   opacity: 0.6;
   transition: all 0.5s ease;
}
.footer__list a:hover img {
   opacity: 1;
}
.footer__list a:hover {
   color: rgba(255, 255, 255, 1);
}
.footer__list li:first-of-type a {
   background: rgba(255, 255, 255, 0.1);
   transition: all 0.5s ease;
   color: #fff;
}
.footer__list li:first-of-type a:hover {
   background: rgba(115, 68, 196, 1) 0%;
}
.hiw__overlay {
   background: url("hiw-bg.png") no-repeat center / contain;
}

.header.header-mobile {
   position: fixed;
   top: 0;
   width: 100vw;
   z-index: 1000000;
   margin-top: 0px;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   background: rgba(0, 0, 0, 0.1);
   border-radius: 0px;
}
.header-mobile__menu.active span:nth-child(2) {
   display: none;
}

.header-mobile__menu.active span:nth-child(1) {
   position: relative;
   top: 3px;
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
}

.header-mobile__menu.active span:nth-child(3) {
   position: relative;
   top: -5px;
   -webkit-transform: rotate(-45deg);
   transform: rotate(-45deg);
}

.header-mobile__menu span {
   -webkit-transition: all 0.2s linear;
   transition: all 0.2s linear;
   display: block;
   width: 40px;
   height: 3px;
   background-color: #fff;
}
.header-mobile__menu span:not(:last-child) {
   margin-bottom: 5px;
}
.header-mobile__link {
   color: #fff;
   text-transform: uppercase;
   font-weight: 700;
}
.header-mobile__nav {
   z-index: 100;
   position: fixed;
   display: none;
   -webkit-transition: all 0.2s linear;
   transition: all 0.2s linear;
   width: 100%;
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   background: rgba(0, 0, 0, 0.1);
   top: 150px;
   padding: 40px;
   border-radius: 30px;
   left: 50%;
   -webkit-transform: translateX(-50%);
   transform: translateX(-50%);
   text-align: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   gap: 30px;
   max-width: 300px;
}
.header__content {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.header-mobile__nav.active {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}
.header-mobile__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   gap: 15px;
}
@media (min-width: 1440px) {
   .hiw__overlay {
      background: url("hiw-bg.png") no-repeat center / cover;
   }
}

@media (max-width: 1200px) {
   .questions__body {
      flex-direction: column;
   }
   .questions {
      padding-bottom: 0;
   }
   .questions__image {
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
   }
   .questions__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
   }
   .questions__column {
      text-align: center;
      align-items: center;
   }
   .header__info {
      gap: 150px;
   }
}
@media (max-width: 999.98px) {
   .strategy__body {
      flex-wrap: wrap;
   }
   .tariff__subtitle {
      text-align: center;
      width: 100%;
   }
   .stariff__overlay,
   .tariff__overlay,
   .stategy__overlay {
      z-index: -1;
   }
   .strategy__column {
      text-align: center;
   }
   .tariff__item {
      width: 100%;
   }
   .tariff__row {
      flex-direction: column;
      align-items: center;
      justify-content: center;
   }
   .header__info {
      gap: 75px;
   }
}
@media (min-width: 768px) {
   .header-mobile {
      display: none;
   }
}
@media (max-width: 768px) {
   .header__logo {
      width: 120px;
      height: 30px;
   }
   header.header {
      display: none;
   }
   .strategy {
      padding: 50px 0 0;
   }
   .footer__wrapper {
      justify-content: center;
   }
   .footer__list {
      justify-content: center;
   }
   .tariff__button {
      padding: 24px 60px;
   }
   .tariff__title {
      font-size: 36px;
   }
   .questions__title {
      font-size: 48px;
   }
   .questions__text {
      font-size: 18px;
   }
   .questions__column {
      padding: 10px;
   }
   .questions__text {
      margin: 0;
   }
}

@media (max-width: 550px) {
   .tariff__row {
      width: 100%;
   }
   .tariff__title {
      font-size: 24px;
   }
   .questions__title {
      font-size: 32px;
   }
}

@media (max-width: 490px) {
   .tariff__row {
      width: 100%;
   }
   .tariff__title {
      font-size: 24px;
   }
   .questions__title {
      font-size: 32px;
   }
   .strategy__title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-style: SemiBold;
    font-size: 55px;
    line-height: 100%;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin: 0px;
    padding: 0 10px;
   }
   .strategy__item-title {
    font-family: Inter Tight;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 109.00000000000001%;
    letter-spacing: 1%;
   }

}
@media (max-width: 390px) {

   .strategy__title {
    font-family: "Inter Tight";
    font-weight: 600;
    font-style: SemiBold;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin: 0px;
    padding: 0 10px;
   }
   .strategy__item-title {
    font-family: Inter Tight;
    font-weight: 700;
    font-style: Bold;
    font-size: 17px;
    leading-trim: NONE;
    line-height: 109.00000000000001%;
    letter-spacing: 1%;
   }
   
}
