* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: 2px solid var(--theme-accent);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: "Gilroy";
  font-weight: normal;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}:root {
  --color-primary: #a065ff;
  --color-secondary: #78a1f2;
  --color-hover-primary: #7430e2;
  --color-hover-secondary: #497feb;
  
  --transition-default: 350ms ease;
  --transition-fast: 200ms ease;
  
  --border-radius-default: 31px;
  --border-radius-large: 30px;
  
  --bp-large: 1240px;
  --bp-medium: 991px;
  --bp-small: 767px;
  
  --theme-bg: transparent;
  --theme-color: #ffffff;
  --theme-accent: var(--color-primary);
  --theme-accent-hover: var(--color-hover-primary);
  --theme-title-color: #ffffff;
  --theme-text-color: rgba(255, 255, 255, 0.6);
  --theme-primary-text: #ffffff;
  --theme-icon-glow: var(--color-primary);
  --theme-icon-glow-rgb: 160, 101, 255;
  --theme-border-color: rgba(160, 101, 255, 0.25);
  --theme-dropdown-bg: #1a1832;
}

.wrapper.active {
  --theme-bg: #ffffff;
  --theme-color: #333333;
  --theme-accent: var(--color-secondary);
  --theme-accent-hover: var(--color-hover-secondary);
  --theme-title-color: #000000;
  --theme-text-color: rgba(0, 0, 0, 0.6);
  --theme-primary-text: #333333;
  --theme-icon-glow: var(--color-secondary);
  --theme-icon-glow-rgb: 120, 161, 242;
  --theme-border-color: rgba(0, 0, 0, 0.25);
  --theme-dropdown-bg: #ffffff;
}@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Regular.woff2") format("woff2"), url("../../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Medium.woff2") format("woff2"), url("../../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("../../fonts/GothamPro.woff2") format("woff2"), url("../../fonts/GothamPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("../../fonts/Inter-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter", sans-serif;
  src: url("../../fonts/Inter-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}body {
  font-family: "Gilroy";
  font-weight: normal;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: var(--transition-default);
  text-decoration: none;
}

a:hover {
  color: var(--theme-accent);
}

.text-center {
  text-align: center;
}.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-smooth {
  transition: var(--transition-default);
}.container {
  max-width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

.wrapper {
  overflow: hidden;
  position: relative;
  color: var(--theme-text-color);
  background: #000116;
}

.wrapper span {
  color: #a065ff;
}

.wrapper.active {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.7);
}

.wrapper.active span {
  color: #78a1f2;
}.why__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-right: 59px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}

@media screen and (max-width: 1240px) {
  .why__blocks {
    padding-right: 0;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

@media screen and (max-width: 991px) {
  .why__blocks {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.product__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 991px) {
  .product__blocks {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .product__blocks {
    row-gap: 25px;
  }
}

@media screen and (max-width: 991px) {
  .reviews__blocks {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) and (max-width: 767px) {
  .reviews__blocks {
    row-gap: 15px;
    margin-bottom: 28px;
  }
}

.header__drop-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 13px;
  padding-bottom: 21px;
  margin-bottom: 16px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .header__drop-list {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__drop-list {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__blocks {
  display: flex;
  margin-bottom: 78px;
}

@media screen and (max-width: 1240px) {
  .footer__blocks {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .footer__blocks {
    flex-direction: column;
    text-align: center;
    margin-bottom: 46px;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 138%;
}

@media screen and (max-width: 1240px) {
  .header__menu {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .header__menu {
    justify-content: start;
  }
}

.header__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .header__item {
    position: absolute;
    min-height: calc(100vh - 100px);
    width: 100%;
    top: 100px;
    transition: var(--transition-default);
    left: -100%;
    box-shadow: 0 0 1px 1px #00000021;
    display: block;
  }
}

.header__inner {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .header__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 0 15px 80px 15px;
  }
}

.header__list {
  display: flex;
  margin-right: 49px;
  margin-top: 20px;
}

@media screen and (max-width: 1240px) {
  .header__list {
    margin-right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .header__list {
    display: block;
    margin-bottom: 28px;
    text-align: center;
    margin-top: 0;
    margin-right: 0;
  }
}

.header__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 56px;
  position: relative;
  transition: var(--transition-fast);
  cursor: pointer;
  padding-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .header__list li {
    margin-bottom: 28px;
    padding-bottom: 0;
    text-align: left;
  }
}

@media screen and (max-width: 1240px) {
  .header__list li {
    margin-right: 35px;
  }
}

@media screen and (max-width: 991px) {
  .header__list li {
    max-width: 355px;
    margin: 0 0 25px 0;
    flex-wrap: wrap;
    align-items: center;
  }
  .header__list li:nth-child(2) {
    max-width: 270px;
  }
  .header__list li:last-child {
    margin: 0;
  }
}

.header__list li a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media only screen and (max-width: 991px) {
  .header__list li a {
    justify-content: flex-start;
    text-align: left;
  }
}

.header__drop-end {
  display: flex;
}

.header__drop-end-server {
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .header__drop-end-server {
    margin-top: 20px !important;
  }
}

.header__drop-list-server li {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 175%;
}

.header__drop-list li a {
  color: rgba(4, 4, 4, 0.6);
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__drop-list li a {
    color: var(--theme-text-color);
  }
}

.language {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 35px;
  background: #A065FF;
  cursor: pointer;
  transition: var(--transition-default);
}

.header__drop-list-language {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
}

.header__drop-list-language li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Gilroy";
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--theme-text-color);
}

.header__drop-list-mobal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 16px 40px;
  border-radius: 18px;
  background: rgba(43, 43, 43, 0.42);
}

.language-mobal .title {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Gilroy";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 138.2%;
  color: #A065FF;
}

@media screen and (max-width: 991px) {
  .language-mobal  {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
}

.header__personal {
  margin-left: 10px;
  min-width: 152px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: var(--border-radius-default);
  color: var(--theme-primary-text);
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
  transition: var(--transition-default);
}

@media screen and (max-width: 1240px) {
  .header__personal {
    width: 145px;
    height: 40px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .header__personal {
    margin: 0;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 138%;
  color: var(--theme-primary-text);
  font-family: "Gotham Pro";
  margin-right: 50px;
}

@media screen and (max-width: 1240px) {
  .header__logo {
    font-size: 16px;
    margin-right: 25px;
  }
}

@media screen and (max-width: 991px) {
  .header__logo {
    margin: 0 0 0 63px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin: 0 0 0 44px;
    font-size: 13px;
  }
}

.slider .slick-initialized .slick-slide {
  display: flex;
}

.why__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 42px;
  line-height: 138%;
  margin-bottom: 43px;
  color: var(--theme-primary-text);
}

@media screen and (max-width: 1240px) {
  .why__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .why__title {
    justify-content: center;
    font-size: 36px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .why__title {
    font-size: 33px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 991px) {
  .why__block {
    text-align: center;
  }
}


.product__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: var(--theme-primary-text);
  margin-bottom: 70px;
}

@media screen and (max-width: 1240px) {
  .product__title {
    font-size: 44px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 991px) {
  .product__title {
    text-align: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .product__title {
    gap: 12px;
    font-size: 33px;
    line-height: 46px;
    margin-bottom: 19px;
  }
}

.product__img {
  width: 138px;
  height: 307px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1240px) {
  .product__img {
    height: 285px;
  }
}

@media screen and (max-width: 767px) {
  .product__img {
    height: 264px;
  }
}

.product__usluga {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 22px;
  color: var(--theme-primary-text);
  text-align: center;
}

@media screen and (max-width: 1240px) {
  .product__usluga {
    font-size: 26px;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .product__usluga {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

.product__info {
  padding: 12px 31px 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 379px;
}

@media screen and (max-width: 1240px) {
  .product__info {
    padding: 12px 16px 25px;
    min-height: 200px;
  }
}

@media screen and (max-width: 991px) {
  .product__info {
    padding: 12px 45px 25px;
  }
}

@media screen and (max-width: 767px) {
  .product__info {
    padding: 12px 15px 22px;
  }
}

.product__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 52px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: var(--theme-primary-text);
  background: var(--color-primary);
  border-radius: 39px;
  margin: 0 auto;
  transition: var(--transition-default);
}

@media screen and (max-width: 767px) {
  .product__btn {
    width: 190px;
    height: 48px;
  }
}

.control__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 35px;
  line-height: 42px;
  color: var(--theme-primary-text);
  margin-bottom: 49px;
}

@media screen and (max-width: 1240px) {
  .control__title {
    font-size: 33px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .control__title {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .control__title {
    margin-bottom: 10px;
  }
}

.control__blocks {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .control__blocks {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .control__btn {
    margin: 0 auto;
  }
}

.reviews__title div {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .reviews .reviews__title-mob {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .reviews .reviews__title-mob b {
    color: var(--color-primary);
  }
}

@media screen and (max-width: 991px) {
  .reviews__btn {
    display: flex;
  }
}

.slick-slide {
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  line-height: 162%;
  color: var(--theme-primary-text);
  font-family: "Gotham Pro";
  margin-bottom: 19px;
}

@media screen and (max-width: 1240px) {
  .footer__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer__title {
    justify-content: center;
    font-size: 26px;
    font-family: "Gilroy";
    font-weight: 500;
    margin-bottom: 6px;
  }
}

.footer__logo {
  justify-content: flex-start;
}

@media screen and (max-width: 991px) {
  .footer__logo {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__logo-mob {
    display: flex;
    margin: 0 auto;
    margin-bottom: 43px;
  }
}

.faq__header {
  display: flex;
  align-items: center;
  padding: 30px 45px 22px;
}

@media screen and (max-width: 991px) {
  .faq__header {
    padding: 22px 45px;
  }
}

@media screen and (max-width: 767px) {
  .faq__header {
    padding: 20px 15px;
  }
}

.faq__exit {
  width: 20px;
  height: 20px;
  margin-left: 25px;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .faq__exit {
    width: 18px;
  }
}

.section-title.progress {
  display: flex;
  justify-content: center;
  color: var(--theme-title-color);
  font-weight: 500;
  font-size: 23px;
  line-height: 27px;
  margin-bottom: 38px;
}

@media only screen and (max-width: 767px) {
  .section-title.progress {
    display: block;
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.tariff__info {
  width: 202px;
  height: 49px;
  background: #e6e6e6;
  border-radius: 51px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-default);
  justify-content: center;
  margin-right: 19px;
}

@media only screen and (max-width: 767px) {
  .tariff__info {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 40px;
  }
  .tariff__info:last-child {
    margin-bottom: 0;
  }
}

.tariff__table__number .progress__column {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .tariff__table__number .progress__column {
    padding: 5px 10px 5px 10px;
    font-size: 15px;
  }
}

.tariff__table__number .tariff-top__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 129px;
  height: 46px;
  position: relative;
  z-index: 5;
  background: var(--color-primary);
  border-radius: var(--border-radius-default);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-right: 0;
  margin-left: auto;
  transition: var(--transition-default);
}

@media only screen and (max-width: 991px) {
  .tariff__table__number .tariff-top__btn {
    width: 90px;
    height: 40px;
    font-size: 15px;
  }
}

.config__blocks {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .wrapper.active .header__drop-list li a {
    color: var(--theme-text-color);
  }
}

.wrapper.active .header__drop-list-language li {
  color: rgba(0, 0, 0, 0.50);
}.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-smooth {
  transition: var(--transition-default);
}.btn-primary {
  background: var(--color-primary);
  transition: var(--transition-default);
}

.btn-primary:hover {
  background: var(--color-hover-primary);
}

.btn-primary:active {
  background: var(--color-hover-primary);
  transform: scale(0.98);
}

.btn-secondary {
  background: var(--color-secondary);
  transition: var(--transition-default);
}

.btn-secondary:hover {
  background: var(--color-hover-secondary);
}

.btn-secondary:active {
  background: var(--color-hover-secondary);
  transform: scale(0.98);
}

.showcase__btn {
  width: 192px;
  height: 57px;
  background: var(--theme-accent);
  border-radius: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary-text);
  font-family: "Gotham Pro";
  font-size: 18px;
  line-height: 138%;
  transition: 350ms;
}

@media screen and (max-width: 1240px) {
  .showcase__btn {
    width: 180px;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .showcase__btn {
    width: 163px;
    height: 48px;
  }
}

.showcase__btn:hover {
  background: var(--theme-accent-hover);
}

.showcase__btn:active {
  background: var(--theme-accent-hover);
  transform: scale(0.98);
}


.product__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 52px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: var(--theme-primary-text);
  background: var(--theme-accent);
  border-radius: 39px;
  margin: 0 auto;
  transition: 350ms;
}

@media screen and (max-width: 767px) {
  .product__btn {
    width: 190px;
    height: 48px;
  }
}

.product__btn:hover {
  background: var(--theme-accent-hover);
}

.product__btn:active {
  background: var(--theme-accent-hover);
  transform: scale(0.98);
}


.control__btn {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .control__btn {
    margin: 0 auto;
  }
}

.reviews__btn {
  display: none;
}

@media screen and (max-width: 991px) {
  .reviews__btn {
    display: flex;
  }
}

.gmod-hosting__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 129px;
  height: 46px;
  position: relative;
  z-index: 5;
  background: var(--theme-accent);
  border-radius: 31px;
  color: var(--theme-primary-text);
}

@media only screen and (max-width: 991px) {
  .gmod-hosting__btn {
    width: 90px;
    height: 40px;
    font-size: 15px;
  }
}

.gmod-hosting__btn:hover {
  background: var(--theme-accent-hover);
}

.gmod-hosting__btn:active {
  background: var(--theme-accent-hover);
  transform: scale(0.98);
}

.header {
  padding: 40px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  z-index: 250;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .header {
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 22px 0;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 138%;
  color: var(--theme-primary-text);
  font-family: "Gotham Pro";
  margin-right: 50px;
}

@media screen and (max-width: 1240px) {
  .header__logo {
    font-size: 16px;
    margin-right: 25px;
  }
}

@media screen and (max-width: 991px) {
  .header__logo {
    margin: 0 0 0 63px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin: 0 0 0 44px;
    font-size: 13px;
  }
}

.header__logo img {
  margin-right: 21px;
  width: 65px;
  height: 65px;
}

@media screen and (max-width: 1240px) {
  .header__logo img {
    margin-right: 18px;
    width: 55px;
    height: 55px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo img {
    width: 38px;
    height: 38px;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 138%;
}

@media screen and (max-width: 1240px) {
  .header__menu {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .header__menu {
    justify-content: start;
  }
}

.header__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .header__item {
    position: absolute;
    min-height: calc(100vh - 100px);
    width: 100%;
    top: 100px;
    transition: var(--transition-default);
    left: -100%;
    box-shadow: 0 0 1px 1px #00000021;
    display: block;
  }
}

.header__item.active {
  left: 0;
  background: #000116;
}

.header__inner {
  display: flex;
  align-items: center;
  color: var(--theme-text-color);
}

@media screen and (max-width: 991px) {
  .header__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 0 15px 80px 15px;
  }
}

.header__list {
  display: flex;
  margin-right: 49px;
  margin-top: 20px;
}

@media screen and (max-width: 1240px) {
  .header__list {
    margin-right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .header__list {
    display: block;
    margin-bottom: 28px;
    text-align: center;
    margin-top: 0;
    margin-right: 0;
  }
}

.header__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 56px;
  position: relative;
  transition: var(--transition-fast);
  cursor: pointer;
  padding-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .header__list li {
    margin-bottom: 28px;
    padding-bottom: 0;
    text-align: left;
  }
}

.header__list li a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media only screen and (max-width: 991px) {
  .header__list li a {
    justify-content: flex-start;
    text-align: left;
  }
}

.header__list li svg path {
  transition: 500ms;
}

.header__list li.active {
  font-weight: 600;
  color: var(--color-primary);
}

.header__list li.active svg path {
  fill: var(--color-primary);
}

.header__list li:hover {
  color: var(--color-primary);
}

.header__list li:hover svg path {
  fill: var(--color-primary);
}

.header__list li:hover .header__drop {
  display: block;
}

@media screen and (max-width: 991px) {
  .header__list li:hover .header__drop {
    padding-top: 20px;
    display: none;
  }
}

@media screen and (max-width: 1240px) {
  .header__list li {
    margin-right: 35px;
  }
}

@media screen and (max-width: 991px) {
  .header__list li {
    max-width: 355px;
    margin: 0 0 25px 0;
    flex-wrap: wrap;
    align-items: center;
  }
  .header__list li:nth-child(2) {
    max-width: 270px;
  }
  .header__list li:last-child {
    margin: 0;
  }
}

.header__list li svg {
  margin-left: 10px;
}

.header__list li:last-child {
  margin-right: 0;
}

.header__drop {
  position: absolute;
  top: 40px;
  left: 0;
  width: auto;
  background: var(--theme-dropdown-bg);
  border: 1px solid var(--theme-border-color);
  border-radius: 15px;
  display: none;
  padding: 10px 26px 17px 21px;
  font-weight: 400;
  font-size: 14px;
  line-height: 138%;
}

@media only screen and (max-width: 991px) {
  .header__drop {
    position: static;
    background: rgba(43, 43, 43, 0.42);
    margin-top: 10px !important;
    padding-top: 20px !important;
    overflow: hidden;
  }
  .header__drop.active {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .header__drop {
    width: 100%;
    max-width: 343px;
  }
}

.header__drop-head {
  color: var(--theme-title-color);
  margin-bottom: 9px;
}

@media only screen and (max-width: 991px) {
  .header__drop-head {
    color: var(--theme-text-color);
    margin-top: 20px;
  }
}

.header__drop-end {
  display: flex;
}

.header__drop-end:last-child li {
  margin-bottom: 0;
}

.header__drop-end li {
  padding: 0;
  margin: 0 52px 8px 0;
  color: var(--theme-text-color);
}

@media only screen and (max-width: 767px) {
  .header__drop-end li {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .header__drop-end li {
    color: var(--theme-text-color);
  }
}

.header__drop-end li:last-child li {
  margin-bottom: 0;
}

.header__drop-end-server {
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .header__drop-end-server {
    margin-top: 20px !important;
  }
}

.header__drop-end-server:last-child li {
  margin-bottom: 7px;
}

.header__drop-end-server li {
  margin: 0 0 7px 0;
}

.header__drop-end-server li:last-child {
  margin: 0;
}

.header__drop-list {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 13px;
  padding-bottom: 21px;
  margin-bottom: 16px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .header__drop-list {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__drop-list {
    grid-template-columns: 1fr 1fr;
  }
}

.header__drop-list::before {
  content: "";
  position: absolute;
  width: calc(100% + 47px);
  height: 1px;
  background-color: var(--theme-border-color);
  bottom: 0;
  left: -22px;
}

@media only screen and (max-width: 991px) {
  .header__drop-list::before {
    background: #fff;
    bottom: -10px;
  }
}

.header__drop-list li {
  padding: 0;
  margin: 0;
}

.header__drop-list li a {
  color: var(--theme-text-color);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media only screen and (max-width: 991px) {
  .header__drop-list li a {
    color: var(--theme-text-color);
  }
}

.header__drop-list li a:hover {
  color: #7430e2;
}

.header__drop-list li a img {
  margin-right: 7px;
}

.header__drop-list-server {
  display: block;
  padding-bottom: 7px;
}

.header__drop-list-server:before {
  width: 191px;
  bottom: -6px;
  left: -19px;
}

.header__drop-list-server li {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 175%;
}

.header__drop-list-server li:last-child {
  margin-bottom: 0;
}

.header__drop-list-server li svg {
  position: static;
  margin-right: 12px;
  width: 12px;
  min-width: 12px;
  height: 12px;
  margin-left: 0;
}

.header__drop-server {
  padding: 10px 4px 14px 18px;
  width: 191px;
}

.header__select {
  margin: 0 0 -50px 10px;
  padding-bottom: 50px;
}

.language {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 35px;
  background: #A065FF;
  cursor: pointer;
  transition: var(--transition-default);
}

.language:hover {
  background: var(--color-hover-primary);
}

.language svg {
  position: absolute;
  left: 7px;
  top: 6px;
}

@media screen and (max-width: 1240px) {
  .language {
    width: 40px;
    height: 40px;
  }
  .language svg {
    width: 32px;
    height: 32px;
    left: 5px;
    top: 4px;
  }
}

@media screen and (max-width: 991px) {
  .header__select {
    display: none;
  }
}

.header__select:hover .header__drop {
  display: block !important;
}

.header__drop-language {
  position: absolute;
  top: 120%;
  left: -200%;
  width: 232px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: #150E1F;
}

.header__drop-title {
  margin: 8px 0 14px 10px;
  font-family: "Gilroy";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--theme-primary-text);
}

.header__drop-list-language {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
}

.header__drop-list-language li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Gilroy";
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--theme-text-color);
}

.header__drop-list-language li:hover {
  color: var(--theme-primary-text);
  transition: all 150ms;
}

.header__drop-list-language .active {
  font-family: "Gilroy";
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--theme-primary-text);
  transition: all 350ms;
}

.header__drop-list-language li {
  background-image: url("data:image/svg+xml,<svg width='20' height='20' viewBox='0 0 0 0' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_1_992)'><path d='M4.54545 1C2.58735 1 1 2.58735 1 4.54545V15.4545C1 17.4126 2.58735 19 4.54545 19H15.4545C17.4126 19 19 17.4126 19 15.4545V4.54545C19 2.58735 17.4126 1 15.4545 1H4.54545Z' stroke='%23A065FF' stroke-width='1.5'/><path d='M5 10L8.33357 14L15 6' stroke='%23A065FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></g><defs><clipPath id='clip0_1_992'><rect width='20' height='20' fill='white'/></clipPath></defs></svg>");
  background-repeat: no-repeat;
  background-position: right;
}

.header__drop-list-language li.active {
  background-image: url("data:image/svg+xml,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_1_992)'><path d='M4.54545 1C2.58735 1 1 2.58735 1 4.54545V15.4545C1 17.4126 2.58735 19 4.54545 19H15.4545C17.4126 19 19 17.4126 19 15.4545V4.54545C19 2.58735 17.4126 1 15.4545 1H4.54545Z' stroke='%23A065FF' stroke-width='1.5'/><path d='M5 10L8.33357 14L15 6' stroke='%23A065FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></g><defs><clipPath id='clip0_1_992'><rect width='20' height='20' fill='white'/></clipPath></defs></svg>") !important;
  background-repeat: no-repeat;
  background-position: right;
}

.header__drop-list-language::before {
  content: '';
  width: 0;
}

.header__drop-list-mobal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 16px 40px;
  border-radius: 18px;
  background: rgba(43, 43, 43, 0.42);
}

.header__drop-list-mobal li {
  cursor: pointer;
  width: 92px;
}

.header__drop-list-mobal li.active {
  background-image: url("data:image/svg+xml,<svg width='20' height='20' viewBox='0 0 0 0' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_1_992)'><path d='M4.54545 1C2.58735 1 1 2.58735 1 4.54545V15.4545C1 17.4126 2.58735 19 4.54545 19H15.4545C17.4126 19 19 17.4126 19 15.4545V4.54545C19 2.58735 17.4126 1 15.4545 1H4.54545Z' stroke='%23A065FF' stroke-width='1.5'/><path d='M5 10L8.33357 14L15 6' stroke='%23A065FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></g><defs><clipPath id='clip0_1_992'><rect width='20' height='20' fill='white'/></clipPath></defs></svg>") !important;
  background-repeat: no-repeat;
  background-position: right;
}

.header__drop-list-mobal .active {
  font-family: "Inter";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 138.2%;
  color: #A065FF !important;
}

.language-mobal {
  display: none;
  margin: 20px 0 12px;
  max-width: 600px;
}

.language-mobal .title {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Gilroy";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 138.2%;
  color: #A065FF;
}

@media screen and (max-width: 991px) {
  .language-mobal  {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
}

.header__personal {
  margin-left: 10px;
  min-width: 152px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: var(--border-radius-default);
  color: var(--theme-primary-text);
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
  transition: var(--transition-default);
}

@media screen and (max-width: 1240px) {
  .header__personal {
    width: 145px;
    height: 40px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .header__personal {
    margin: 0;
  }
}

.header__personal:hover {
  background: var(--color-hover-primary);
}

.header .switch {
  position: relative;
  width: 81px;
  height: 32px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .header .switch {
    margin-bottom: 20px;
  }
}

.header .switch label {
  width: 81px;
  height: 32px;
  position: absolute;
  background-color: #9ca3af;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 50px;
}

.header .switch input[type="checkbox"] {
  visibility: hidden;
}

.header .switch label:after {
  content: "";
  width: 44px;
  height: 32px;
  background-color: var(--color-primary);
  border-radius: 35px;
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.1s;
  background-image: url(../images/white-2.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}

.header .switch input[type="checkbox"]:checked + label {
  background-color: #6e6280;
  border-radius: 35px;
  background-image: url(../../images/white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 20% center;
}

.header .switch input[type="checkbox"] + label {
  background-image: url(../images/black-2.svg);
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  background-size: 15px;
  background-position: 80% center;
}

.header .switch input[type="checkbox"]:checked + label:after {
  left: 36px;
  background: var(--color-primary);
  background-image: url(../../images/black.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}

.burger {
  display: none;
  width: 51px;
}

@media screen and (max-width: 991px) {
  .burger {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .burger {
    width: 41px;
  }
}

.burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.burger a span {
  position: relative;
  display: block;
  width: 51px;
  height: 3px;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
  .burger a span {
    width: 41px;
    height: 1px;
  }
}

.burger a span:after {
  content: "";
  width: 33px;
  height: 3px;
  position: absolute;
  left: 0;
  background: #ffffff;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
  .burger a span:after {
    width: 23px;
    height: 1px;
  }
}

.burger a span:before {
  top: -8px;
}

.burger a span:after {
  top: 8px;
}

.burger a.active span:after {
  background: var(--color-primary);
}

.wrapper.active .header__inner {
  color: var(--theme-text-color);
}

.wrapper.active .header__logo {
  color: var(--theme-title-color);
}



.wrapper.active .header__drop-list-mobal .active {
  color: #6C8CD9 !important;
}


.wrapper.active .header__drop-list-language li.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cg clip-path='url(%23clip0_1_1125)'%3E%3Cpath d='M4.54545 1C2.58735 1 1 2.58735 1 4.54545V15.4545C1 17.4126 2.58735 19 4.54545 19H15.4545C17.4126 19 19 17.4126 19 15.4545V4.54545C19 2.58735 17.4126 1 15.4545 1H4.54545Z' stroke='%2378A1F2' stroke-width='1.5'/%3E%3Cpath d='M5 10L8.33357 14L15 6' stroke='%2378A1F2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_1125'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: right;
}

.wrapper.active .header__drop-list-mobal li.active {
  background-image: url("data:image/svg+xml,<svg width='20' height='20' viewBox='0 0 0 0' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_1_992)'><path d='M4.54545 1C2.58735 1 1 2.58735 1 4.54545V15.4545C1 17.4126 2.58735 19 4.54545 19H15.4545C17.4126 19 19 17.4126 19 15.4545V4.54545C19 2.58735 17.4126 1 15.4545 1H4.54545Z' stroke='%23A065FF' stroke-width='1.5'/><path d='M5 10L8.33357 14L15 6' stroke='%23A065FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></g><defs><clipPath id='clip0_1_992'><rect width='20' height='20' fill='white'/></clipPath></defs></svg>") !important;
  background-repeat: no-repeat;
  background-position: right;
}

.wrapper.active .header__drop-list-mobal {
  border-radius: 18px;
  border: 1px solid #CDDBF7;
  background: #FBFBFB;
}


.wrapper.active .header__drop-list-mobal li .active{
  color: #6C8CD9;
}

.wrapper.active .header__personal {
  background: var(--color-secondary);
  transition: var(--transition-default);
}

.wrapper.active .header__personal:hover {
  background: var(--color-hover-secondary);
}

.wrapper.active .header .switch label:after {
  background-color: #6c8cd9;
}

.wrapper.active .header__list li.active {
  color: var(--color-secondary);
}

.wrapper.active .header__list li.active svg path {
  fill: var(--color-secondary);
}

.wrapper.active .header__list li:hover {
  color: var(--color-secondary);
}

.wrapper.active .header__list li:hover svg path {
  fill: var(--color-secondary);
}

.wrapper.active .header__item.active {
  background: #ffffff;
}

.wrapper.active .header__drop-list li a:hover {
  color: var(--color-secondary);
}

.wrapper.active .header__drop-list-server li a:hover {
  color: var(--color-secondary);
}

.wrapper.active .header__drop-language {
  border: 1px solid rgba(26, 26, 26, 0.10);
  background: #FFF;
  box-shadow: 0px -3px 40px -1px rgba(0, 0, 0, 0.08);
}


@media only screen and (max-width: 991px) {
  .wrapper.active .header__item {
    box-shadow: none;
  }
}


@media only screen and (max-width: 991px) {
  .wrapper.active .header__drop li {
    color: rgba(4, 4, 4, 0.7);
  }
  .wrapper.active .header__drop li a {
    color: rgba(4, 4, 4, 0.7);
  }
}

@media only screen and (max-width: 991px) {
  .wrapper.active .header__drop-head {
    color: rgba(4, 4, 4, 0.7);
  }
}

@media only screen and (max-width: 991px) {
  .wrapper.active .header__drop-list::before {
    background: rgba(4, 4, 4, 0.7);
  }
  
  .wrapper.active .header__drop-end li {
    color: var(--theme-text-color);
  }
  
  .wrapper.active .header__drop-list li a {
    color: var(--theme-text-color);
  }
}

.wrapper.active .header__drop-language {
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #f8f8f8;
}

.wrapper.active .burger a span {
  background: #000000;
}

.wrapper.active .burger a span::after {
  background: #000000;
}

.wrapper.active .burger a.active span:after {
  background: var(--color-secondary);
}.footer {
  padding: 85px 0 93px 0;
  background: linear-gradient(243deg, #8233ff 17.11%, rgba(2, 72, 202, 0) 321.48%, #ffffff 296.48%);
}

@media screen and (max-width: 1240px) {
  .footer {
    padding: 70px 0;
  }
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}

.footer__blocks {
  display: flex;
  margin-bottom: 78px;
}

@media screen and (max-width: 1240px) {
  .footer__blocks {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .footer__blocks {
    flex-direction: column;
    text-align: center;
    margin-bottom: 46px;
  }
}

.footer__block {
  margin-right: 89px;
}

@media screen and (max-width: 1240px) {
  .footer__block {
    margin-right: 40px;
  }
}

@media screen and (max-width: 991px) {
  .footer__block {
    margin-right: 38px;
  }
}

.footer__block:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .footer__block {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .footer__block:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  .footer__block:first-child .footer__menu li:nth-child(2) {
    line-height: 114%;
    margin-top: 7px;
  }
}

@media screen and (max-width: 767px) {
  .footer__block:first-child .footer__menu li:nth-child(2) {
    margin-top: 0;
    line-height: 228%;
  }
}

@media screen and (max-width: 991px) {
  .footer__block:nth-child(3) .footer__menu li:nth-child(3) {
    line-height: 114%;
    margin-top: 7px;
  }
}

@media screen and (max-width: 767px) {
  .footer__block:nth-child(3) .footer__menu li:nth-child(3) {
    margin-top: 0;
    line-height: 228%;
  }
}

@media screen and (max-width: 991px) {
  .footer__block:nth-child(4) .footer__menu li:nth-child(1) {
    line-height: 114%;
    margin-top: 27px;
  }
}

@media screen and (max-width: 767px) {
  .footer__block:nth-child(4) .footer__menu li:nth-child(1) {
    margin-top: 0;
    line-height: 228%;
  }
}

@media screen and (max-width: 991px) {
  .footer__block:nth-child(4) .footer__menu li:nth-child(2) {
    line-height: 114%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer__block:nth-child(4) .footer__menu li:nth-child(2) {
    margin-top: 0;
    line-height: 228%;
  }
}

.footer__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  line-height: 162%;
  color: var(--theme-primary-text);
  font-family: "Gotham Pro";
  margin-bottom: 19px;
}

@media screen and (max-width: 1240px) {
  .footer__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer__title {
    justify-content: center;
    font-size: 26px;
    font-family: "Gilroy";
    font-weight: 500;
    margin-bottom: 6px;
  }
}

.footer__menu {
  font-size: 17px;
  line-height: 228%;
  font-family: "Gotham Pro";
}

.footer__menu a {
  transition: opacity 0.3s ease;
}

.footer__menu a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1240px) {
  .footer__menu {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer__menu {
    font-size: 19px;
    font-family: "Gilroy";
  }
}

.footer__logo {
  justify-content: flex-start;
}

@media screen and (max-width: 991px) {
  .footer__logo {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__logo {
    display: none;
  }
}

.footer__logo-mob {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer__logo-mob {
    display: flex;
    margin: 0 auto;
    margin-bottom: 43px;
  }
}

.footer__item {
  position: relative;
}

.footer__card {
  position: absolute;
  bottom: -59px;
  right: -88px;
}

@media screen and (max-width: 1350px) {
  .footer__card {
    right: -35px;
  }
}

@media screen and (max-width: 1240px) {
  .footer__card {
    right: 0;
  }
}

@media screen and (max-width: 991px) {
  .footer__card {
    bottom: -40px;
  }
}

@media screen and (max-width: 767px) {
  .footer__card {
    position: static;
    margin: 0 auto;
    width: 89px;
    height: 30px;
  }
}

.wrapper.active .footer {
  background: linear-gradient(263.74deg, #0059ff -14.89%, rgba(2, 72, 202, 0) 302.48%, #0059ff 302.48%);
}

.wrapper.active .footer__menu {
  color: rgba(255, 255, 255, 0.9);
}

.wrapper.active .footer__logo {
  color: var(--theme-primary-text);
}

.wrapper.active .footer__logo-mob {
  color: var(--theme-primary-text);
}

.footer__contact {
  color: #ffffff;
}

.footer__ip-info {
  color: var(--theme-primary-text);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer__ip-info:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .footer__ip-info {
    font-size: 16px;
    display: inline-block;
    text-align: center;
  }
}

.footer__info-text {
  color: #ffffff;
}

.footer__info-text small {
  color: #ffffff;
}

.footer__regional-content {
  margin-top: 16px;
}

.footer__ip-info-ru {
  color: var(--theme-primary-text);
  text-decoration: underline;
}

.footer__registry-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-top: 16px;
}

.footer__registry-link:hover {
  opacity: 0.7;
}

.footer__registry-link img {
  display: block;
  height: 80px;
}

@media screen and (max-width: 767px) {
  .footer__regional-content {
    text-align: center;
  }

  .footer__registry-link {
    display: flex;
    justify-content: center;
  }
}button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.header__select {
  margin: 0 0 -50px 10px;
  padding-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .header__select {
    display: none;
  }
}

.header__select:hover .header__drop {
  display: block !important;
}

.header .switch {
  position: relative;
  width: 81px;
  height: 32px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .header .switch {
    margin-bottom: 20px;
  }
}

.header .switch label {
  width: 81px;
  height: 32px;
  position: absolute;
  background-color: #9ca3af;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 50px;
}

.header .switch input[type="checkbox"] {
  visibility: hidden;
}

.header .switch label:after {
  content: "";
  width: 44px;
  height: 32px;
  background-color: var(--color-primary);
  border-radius: 35px;
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.1s;
  background-image: url(../../images/white-2.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}

.header .switch input[type="checkbox"]:checked + label {
  background-color: #6e6280;
  border-radius: 35px;
  background-image: url(../../images/white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 20% center;
}

.header .switch input[type="checkbox"] + label {
  background-image: url(../../images/black-2.svg);
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  background-size: 15px;
  background-position: 80% center;
}

.header .switch input[type="checkbox"]:checked + label:after {
  left: 36px;
  background: var(--color-primary);
  background-image: url(../../images/black.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}

.wrapper.active .header .switch label:after {
  background-color: #6c8cd9;
}.showcase__text {
  font-size: 24px;
  line-height: 138%;
  margin-bottom: 38px;
  color: var(--theme-text-color);
}

.showcase__text span {
  color: var(--theme-text-color);
}

@media screen and (max-width: 1240px) {
  .showcase__text {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .showcase__text {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  .showcase__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.hosting__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

@media screen and (max-width: 991px) {
  .hosting__blocks {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .hosting__blocks {
    grid-template-columns: 1fr;
  }
}

.hosting__block {
  padding: 24px 32px 41px;
  background: #1a1832;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .hosting__block {
    padding: 24px 20px 30px;
  }
}

.hosting__img {
  width: 245px;
  height: 197px;
  margin: 0 auto;
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting__img img {
  max-width: 100%;
}

.hosting__title-block {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 10px;
  color: var(--theme-primary-text);
}

.hosting__price {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}

.hosting__popular {
  width: 260px;
  height: 35px;
  background: var(--color-primary);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  margin: 0 auto;
  margin-bottom: 11px;
}

.hosting__inner {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hosting__text {
  font-size: 18px;
  line-height: 175%;
  max-width: 606px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 47px;
}

.hosting__amount {
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
}

.hosting__amount svg {
  margin-right: 12px;
  flex-shrink: 0;
}

.hosting__amount p {
  margin: 0;
  padding: 0;
}

.hosting__list {
  font-size: 20px;
  line-height: 175%;
  margin-bottom: 6px;
  position: relative;
}

@media screen and (max-width: 1240px) {
  .hosting__list {
    font-size: 18px;
  }
}

.hosting__list li {
  display: flex;
  align-items: center;
}

.hosting__list svg {
  margin-right: 19px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting__block-info {
  margin-bottom: 21px;
}

.why {
  padding: 44px 0;
  background-image: url(../../images/paper.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  contain: layout style;
}

@media screen and (max-width: 767px) {
  .why {
    padding: 13px 0 19px;
    min-height: 300px;
  }
}

.why__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 42px;
  line-height: 138%;
  margin-bottom: 43px;
  color: var(--theme-primary-text);
}

@media screen and (max-width: 1240px) {
  .why__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .why__title {
    justify-content: center;
    font-size: 36px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .why__title {
    font-size: 33px;
    margin-bottom: 32px;
  }
}

.why__text {
  font-size: 17px;
  line-height: 162%;
  color: var(--theme-text-color);
}

.hosting {
  padding: 173px 0 50px;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1240px) {
  .hosting {
    padding: 150px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .hosting {
    padding: 123px 0 50px;
  }
}

.hosting__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 61px;
  line-height: 71px;
  color: var(--theme-primary-text);
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 1240px) {
  .hosting__title {
    font-size: 55px;
  }
}

@media screen and (max-width: 767px) {
  .hosting__title {
    font-size: 40px;
    line-height: 45px;
  }
}

.hosting__text {
  font-size: 18px;
  line-height: 175%;
  max-width: 606px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 47px;
}

.wrapper.active .why__title {
  color: var(--theme-title-color);
}

.wrapper.active .why {
  background-image: url(../../images/whitepaper.webp);
}

.wrapper.active .hosting__title {
  color: var(--theme-title-color);
}

.wrapper.active .hosting__text {
  color: var(--theme-text-color);
}

.wrapper.active .showcase__text,
.wrapper.active .showcase__text span {
  color: var(--theme-text-color);
}

.wrapper.active .why__text {
  color: var(--theme-text-color);
}

.wrapper.active .reviews__text {
  color: var(--theme-text-color);
}

.wrapper.active .hosting__block {
  background: #fbfbfb;
}

.wrapper.active .hosting__block:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.wrapper.active .hosting__amount {
  color: var(--theme-text-color);
}

.wrapper.active .hosting__list {
  color: var(--theme-text-color);
}

.reviews__text {
  font-size: 17px;
  line-height: 162%;
  margin-bottom: 14px;
  color: var(--theme-text-color);
}

@media screen and (max-width: 1240px) {
  .reviews__text {
    font-size: 16px;
  }
}/* Modal/Popup component styles */
/* Note: No existing modal styles found in the main CSS file */
/* This file is prepared for future modal implementations */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal__content {
  background: var(--theme-bg);
  border-radius: var(--border-radius-default);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--theme-text-color);
  transition: var(--transition-default);
}

.modal__close:hover {
  color: var(--theme-primary-text);
}

.popup {
  position: absolute;
  background: var(--theme-bg);
  border: 1px solid var(--theme-border-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--theme-border-color);
  padding: 16px;
  z-index: 500;
  display: none;
}

.popup.active {
  display: block;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

.overlay.active {
  display: block;
}

.modal__icon {
  text-align: center;
  margin-bottom: 20px;
}

.modal__icon i {
  font-size: 48px;
  color: var(--color-primary);
}

.modal__title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: var(--theme-title-color);
}

.modal__text {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
  color: var(--theme-text-color);
}

.modal__btn {
  display: block;
  width: 100%;
  text-align: center;
}

.wrapper.active .modal__content {
  background: var(--theme-bg-light);
}

.wrapper.active .modal__icon i {
  color: var(--color-secondary);
}.region-redirect-modal .modal__content {
  max-width: 560px;
  padding: 40px;
  background: var(--theme-dropdown-bg);
  border: 1px solid var(--theme-border-color);
  text-align: left;
}

.region-modal__header {
  margin-bottom: 24px;
}

.region-modal__header h2 {
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--theme-title-color);
  margin: 0;
}

.region-modal__description {
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--theme-text-color);
  margin: 0 0 24px 0;
}

.region-modal__advantages {
  margin-bottom: 32px;
}

.region-modal__advantages h3 {
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--theme-title-color);
  margin: 0 0 16px 0;
}

.region-modal__advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.region-modal__advantages li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--theme-primary-text);
}

.region-modal__advantages li img,
.region-modal__advantages li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.region-modal__advantages li img {
  filter: brightness(0) invert(1);
}

.region-modal__advantages li svg {
  stroke: var(--theme-primary-text);
}

.region-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.region-modal__actions button {
  flex: 1;
  min-width: 180px;
  height: 52px;
  border-radius: 39px;
  border: none;
  cursor: pointer;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-default);
}

.region-modal__actions button img,
.region-modal__actions button svg {
  width: 20px;
  height: 20px;
}

.region-modal__actions .btn-primary img {
  filter: brightness(0) invert(1);
}

.region-modal__actions .btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.region-modal__actions .btn-primary:hover {
  background: var(--color-hover-primary);
}

.region-modal__actions .btn-primary:active {
  background: var(--color-hover-primary);
  transform: scale(0.98);
}

.region-modal__actions .btn-secondary {
  background: transparent;
  border: 2px solid var(--theme-border-color);
  color: var(--theme-primary-text);
}

.region-modal__actions .btn-secondary:hover {
  background: rgba(160, 101, 255, 0.1);
  border-color: var(--theme-accent);
}

.region-modal__actions .btn-secondary:active {
  transform: scale(0.98);
}

@media screen and (max-width: 767px) {
  .region-redirect-modal .modal__content {
    padding: 24px;
    max-width: 95%;
  }

  .region-modal__header {
    margin-bottom: 20px;
  }

  .region-modal__header h2 {
    font-size: 20px;
  }

  .region-modal__description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .region-modal__advantages h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .region-modal__advantages li {
    font-size: 14px;
    gap: 10px;
  }

  .region-modal__advantages li img,
  .region-modal__advantages li svg {
    width: 20px;
    height: 20px;
  }

  .region-modal__actions {
    flex-direction: column;
    gap: 10px;
  }

  .region-modal__actions button {
    width: 100%;
    min-width: unset;
    height: 48px;
    font-size: 15px;
  }
}
.faq {
  padding: 50px 0 70px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 50px 0;
  }
}

.faq__title {
  margin-bottom: 37px;
  color: var(--theme-primary-text);
}

.faq__item {
  border: 1px solid rgba(160, 101, 255, 0.25);
  border-radius: 52px;
  cursor: pointer;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .faq__item {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .faq__item {
    margin-bottom: 20px;
    border-radius: 30px;
  }
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__header {
  display: flex;
  align-items: center;
  padding: 30px 45px 22px;
}

@media screen and (max-width: 991px) {
  .faq__header {
    padding: 22px 45px;
  }
}

@media screen and (max-width: 767px) {
  .faq__header {
    padding: 20px 15px;
  }
}

.faq__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-primary-text);
}

@media screen and (max-width: 991px) {
  .faq__name {
    font-size: 21px;
  }
}

@media screen and (max-width: 767px) {
  .faq__name {
    font-size: 18px;
  }
}

.faq__exit {
  width: 20px;
  height: 20px;
  margin-left: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .faq__exit {
    width: 18px;
  }
}

.faq__header.active .faq__exit::before {
  display: none;
}

.faq__exit::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #a065ff;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .faq__exit::before {
    height: 18px;
  }
}

@media screen and (max-width: 767px) {
  .faq__exit::before {
    height: 16px;
  }
}

.faq__strong {
  width: 20px;
  height: 3px;
  background-color: #a065ff;
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .faq__strong {
    width: 18px;
  }
}

@media screen and (max-width: 767px) {
  .faq__strong {
    width: 16px;
  }
}

.faq__body {
  display: none;
  padding: 13px 45px 50px;
  font-size: 18px;
  line-height: 175%;
}

@media screen and (max-width: 991px) {
  .faq__body {
    padding: 13px 45px 30px;
  }
}

@media screen and (max-width: 767px) {
  .faq__body {
    font-size: 16px;
    padding: 0px 15px 20px 15px;
  }
}

.wrapper.active .faq {
  color: rgba(0, 0, 0, 0.6);
}

.wrapper.active .faq__item {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.wrapper.active .faq__name {
  color: #000000;
}

.wrapper.active .faq__exit::before {
  background: #78a1f2;
}

.wrapper.active .faq__strong {
  background: #78a1f2;
}.advantages {
  padding-top: 6px;
  color: #ffffff;
}

.advantages__title {
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 1240px) {
  .advantages__title {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .advantages__title {
    font-size: 36px;
  }
}

.advantages__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 991px) {
  .advantages__blocks {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 20px;
  }
  .advantages__text {
    justify-content: center;
  }
}

.advantages__block {
  padding: 35px 24px;
  border: 1px solid rgba(160, 101, 255, 0.5);
  border-radius: 20px;
  cursor: pointer;
}

.advantages__block svg {
  margin-bottom: 12px;
}

.advantages__text {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 27px;
  line-height: 175%;
}

@media screen and (max-width: 1240px) {
  .advantages__text {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .advantages__block {
    margin-bottom: 12px;
  }
  .advantages__text {
    font-size: 22px;
  }
}

.advantages__text a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.advantages__text svg,
.advantages__text img {
  margin-left: 20px;
  width: 27px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .advantages__text svg,
  .advantages__text img {
    margin-left: 10px;
    width: 24px;
  }
}

.advantages__text svg path {
  fill: #ffffff;
  transition: 300ms;
}

.wrapper.active .advantages__title {
  color: #000000;
}

.wrapper.active .advantages svg path {
  fill: #78a1f2;
}

.wrapper.active .advantages__text {
  color: #78a1f2;
}

.wrapper.active .advantages__text svg path {
  fill: #78a1f2;
}.promo-slide-enhanced {
  background: transparent;
  border-radius: var(--border-radius-large);
  position: relative;
  overflow: hidden;
}

.promo-slide-enhanced .showcase__title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.promo-slide-enhanced .showcase__title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.promo-slide-enhanced .showcase__text {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 20px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}




.promo-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
}

.promo-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--transition-default);
  position: relative;
}

.promo-benefit:hover {
  transform: translateX(5px);
  background: rgba(95, 255, 152, 0.05);
}

.promo-benefit i {
  flex-shrink: 0;
  font-size: 16px;
  color: #5fff98;
  filter: drop-shadow(0 2px 4px rgba(95, 255, 152, 0.4));
  transition: var(--transition-default);
  animation: pulse-glow 3s ease-in-out infinite;
}

.promo-benefit:hover i {
  transform: scale(1.1);
  color: #4ae085;
  animation: pulse-glow 1s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 2px 4px rgba(95, 255, 152, 0.4));
  }
  50% {
    filter: drop-shadow(0 2px 8px rgba(95, 255, 152, 0.6));
  }
}

.promo-benefit span {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-primary-text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, 
    rgba(160, 101, 255, 0.12) 0%, 
    rgba(120, 161, 242, 0.08) 100%
  );
  border: 1px solid rgba(160, 101, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(160, 101, 255, 0.15);
}

.promo-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(160, 101, 255, 0.03) 0%, 
    rgba(120, 161, 242, 0.02) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.promo-timer {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(160, 101, 255, 0.15);
}

.timer-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--theme-primary-text);
}

.timer-hours,
.timer-minutes,
.timer-seconds {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 32px;
  text-align: center;
}

.timer-separator {
  color: var(--theme-primary-text);
  margin: 0 6px;
  opacity: 0.6;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 0.6; }
  51%, 100% { opacity: 0.3; }
}

.promo-code-block {
  text-align: center;
}

.promo-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-text-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-code-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, 
    rgba(160, 101, 255, 0.1) 0%, 
    rgba(120, 161, 242, 0.08) 100%
  );
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  position: relative;
}

.promo-code-container::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.promo-code {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--theme-primary-text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.promo-copy-btn {
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  color: white;
  flex-shrink: 0;
}

.promo-copy-btn:hover {
  background: var(--color-hover-primary);
  transform: scale(1.05);
}

.promo-copy-btn:active {
  transform: scale(0.95);
}

@media screen and (max-width: 1240px) {
  .promo-widget {
    max-width: 280px;
    padding: 28px;
    gap: 20px;
  }
  
  .timer-display {
    font-size: 24px;
  }
  
  .promo-code {
    font-size: 20px;
  }
  
  .promo-code-container {
    padding: 14px 18px;
  }
}

@media screen and (max-width: 991px) {
  .promo-widget {
    max-width: 250px;
    padding: 24px;
    gap: 18px;
  }
  
  .timer-display {
    font-size: 22px;
  }
  
  .timer-label {
    font-size: 11px;
  }
  
  .promo-label {
    font-size: 13px;
  }
  
  .promo-code {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .promo-code-container {
    padding: 12px 16px;
  }
  
  .promo-copy-btn {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 1240px) {
  .promo-slide-enhanced .showcase__title {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .promo-slide-enhanced .showcase__text {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .promo-benefits {
    margin: 16px 0;
    gap: 7px;
  }
  
  .promo-benefit span {
    font-size: 15px;
  }
  
  .promo-benefit i {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .promo-slide-enhanced .showcase__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .promo-slide-enhanced .showcase__text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .promo-benefits {
    margin: 14px 0;
    gap: 6px;
  }
  
  .promo-benefit span {
    font-size: 14px;
  }
  
  .promo-benefit i {
    font-size: 14px;
  }
  
}

@media screen and (max-width: 767px) {
  .promo-slide-enhanced {
    border-radius: 12px;
  }
  
  .promo-slide-enhanced .showcase__title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .promo-slide-enhanced .showcase__text {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .promo-widget {
    display: none;
  }
  
  .promo-benefits {
    margin: 12px 0;
    gap: 5px;
  }
  
  .promo-benefit span {
    font-size: 13px;
  }
  
  .promo-benefit i {
    font-size: 13px;
  }
  
}

.wrapper.active .promo-widget {
  background: linear-gradient(135deg, 
    rgba(120, 161, 242, 0.08) 0%, 
    rgba(160, 101, 255, 0.06) 100%
  );
  border-color: rgba(120, 161, 242, 0.2);
}

.wrapper.active .promo-widget::before {
  background: linear-gradient(135deg, 
    rgba(120, 161, 242, 0.03) 0%, 
    rgba(160, 101, 255, 0.02) 100%
  );
}

.wrapper.active .promo-timer {
  border-bottom-color: rgba(120, 161, 242, 0.15);
}

.wrapper.active .timer-label {
  color: var(--color-secondary);
}

.wrapper.active .timer-hours,
.wrapper.active .timer-minutes,
.wrapper.active .timer-seconds {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wrapper.active .promo-code-container {
  background: linear-gradient(135deg, 
    rgba(120, 161, 242, 0.1) 0%, 
    rgba(160, 101, 255, 0.08) 100%
  );
  border-color: var(--color-secondary);
}

.wrapper.active .promo-code-container::before {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.wrapper.active .promo-copy-btn {
  background: var(--color-secondary);
}

.wrapper.active .promo-copy-btn:hover {
  background: var(--color-hover-secondary);
}

.wrapper.active .promo-widget::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, 
    rgba(120, 161, 242, 0.2) 0%,
    rgba(160, 101, 255, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.wrapper.active .promo-code {
  color: #1a1a1a;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8), 
               0 0 10px rgba(255, 255, 255, 0.5);
  font-weight: 900;
}

.wrapper.active .promo-slide-enhanced {
  background: transparent !important;
}

.wrapper.active .promo-widget {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.wrapper.active .promo-widget::before {
  background: transparent !important;
}

.wrapper.active .promo-widget::after {
  background: transparent !important;
}

.wrapper.active .promo-code-container {
  background: transparent !important;
  border-color: rgba(160, 101, 255, 0.2) !important;
}

.wrapper.active .promo-code-container::before {
  background: transparent !important;
}



.dev-warning-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, #2d2d3a, #1a1a24);
  border-bottom: 3px solid #ff6b35;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.dev-warning-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  opacity: 0.6;
}

.dev-warning-banner.show {
  transform: translateY(0);
}

.dev-warning-banner.hide {
  transform: translateY(-100%);
}

.dev-warning-banner__content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  gap: 16px;
}

.dev-warning-banner__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
}

.dev-warning-banner__icon svg {
  color: #ff6b35;
}

.dev-warning-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dev-warning-banner__text .lang-dev-warning-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dev-warning-banner__text .lang-dev-warning-message {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #e0e0e0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dev-warning-banner__dismiss {
  flex-shrink: 0;
  background: #ffffff;
  border: 2px solid #ff6b35;
  color: #1a1a24;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  text-shadow: none;
}

.dev-warning-banner__dismiss:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.dev-warning-banner__dismiss:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
  .dev-warning-banner__content {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    text-align: center;
  }
  
  .dev-warning-banner__text .lang-dev-warning-title {
    font-size: 15px;
  }
  
  .dev-warning-banner__text .lang-dev-warning-message {
    font-size: 13px;
  }
  
  .dev-warning-banner__dismiss {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .dev-warning-banner__content {
    padding: 12px 16px;
  }
  
  .dev-warning-banner__icon {
    width: 28px;
    height: 28px;
  }
  
  .dev-warning-banner__icon svg {
    width: 20px;
    height: 20px;
  }
}

body.dev-warning-active {
  padding-top: var(--dev-warning-height, 0);
}

:root {
  --dev-warning-height: 0px;
}body.lang-preload [class*="lang-"] {
  visibility: hidden;
}

body.lang-ready [class*="lang-"] {
  visibility: visible;
}:root {
  --snow-count: 50;
  --snow-color: rgba(255, 255, 255, 0.9);
  --snow-color-light: rgba(255, 255, 255, 0.7);
}

.christmas-snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10%;
  color: var(--snow-color);
  font-size: 1em;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.snowflake--small {
  font-size: 0.6em;
  filter: blur(0.5px);
}

.snowflake--medium {
  font-size: 1em;
  filter: blur(1px);
}

.snowflake--large {
  font-size: 1.4em;
  filter: blur(1.5px);
}

.wrapper.active .snowflake {
  color: var(--snow-color-light);
  filter: brightness(0.95);
}

@media (max-width: 991px) {
  .snowflake:nth-child(n+31) {
    display: none;
  }
}

@media (max-width: 767px) {
  .snowflake:nth-child(n+21) {
    display: none;
  }

  .snowflake {
    font-size: 0.8em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .christmas-snow {
    display: none;
  }
}
