:root {
  --color-bg: #050912;
  --color-bg-secondary: #0b1220;
  --color-card: rgba(17, 23, 33, 0.78);
  --color-card-secondary: rgba(28, 34, 50, 0.72);
  --color-border: rgba(148, 177, 250, 0.16);
  --color-border-strong: rgba(148, 177, 250, 0.32);
  --color-text: #eeedef;
  --color-text-soft: #c4c5c9;
  --color-text-muted: #93959b;
  --color-blue: #8dabf9;
  --color-purple: #a68cf0;
  --color-button: #000000;
  --gradient-primary: linear-gradient(135deg, #8dabf9 0%, #a68cf0 100%);
  --shadow-blue: 0px 0px 20px 4px rgba(145, 209, 255, 0.18);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Syne Mono";
}

.adaptive {
  display: block;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background: #050912;
  color: #eeedef;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 7px 25px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  background: rgba(5, 9, 18, 0.82);
  box-shadow: var(--shadow-blue);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: "Syne Mono";
  font-weight: 700;
  font-size: 34px;
}
.header__nav-list {
  display: flex;
  gap: 20px;
}
.header__nav-link {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #eeedef;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header__nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.header__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.header__socials {
  display: flex;
  column-gap: 10px;
}
.header__socials-link svg {
  fill: #8dabf9;
  width: 24px;
}
.header__btn {
  min-height: 44px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #050912;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
}
.header__burger-line1, .header__burger-line2, .header__burger-line3 {
  position: absolute;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #8dabf9;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.header__burger-line1 {
  top: 9px;
}
.header__burger-line2 {
  top: 19px;
}
.header__burger-line3 {
  top: 30px;
}
.header__burger.active .header__burger-line1 {
  height: 4px;
  top: 19px;
  transform: rotate(45deg);
}
.header__burger.active .header__burger-line2 {
  opacity: 0;
}
.header__burger.active .header__burger-line3 {
  height: 4px;
  top: 19px;
  transform: rotate(-45deg);
}

.hero {
  padding-top: 85px;
}
.hero__container {
  justify-content: center;
  column-gap: 40px;
  display: flex;
  align-items: center;
}
.hero__left {
  max-width: 620px;
}
.hero__left img {
  max-width: 100%;
}
.hero__title {
  max-width: 620px;
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
}
.hero__title span {
  color: #93acfe;
}
.hero__description {
  max-width: 604px;
  margin: 24px 0 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.hero__description span {
  color: #93acfe;
}
.hero__connect {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__telegram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #050912;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.hero__telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.hero__telegram-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.hero__btn {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-soft);
  padding: 0 36px;
  min-height: 58px;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}

.services__container {
  padding: 60px 0;
}
.services__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.services__description {
  margin: 0 auto;
  max-width: 835px;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.services__description span {
  color: #93acfe;
}
.services__subtitle {
  font-weight: 700;
  color: #93acfe;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.services__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.services__block {
  display: flex;
  justify-content: space-between;
}
.services__tech {
  display: flex;
  column-gap: 10px;
  align-items: center;
  max-height: fit-content;
}
.services__tech span {
  font-weight: 400;
  font-size: 24px;
}
.services__tech-icon svg {
  width: 30px;
  height: 30px;
}
.services__tech-icon--woo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__tech-icon--woo svg {
  width: 107px;
  height: 50px;
}
.services__card {
  border-radius: 25px;
  position: relative;
  z-index: 0;
  max-width: 480px;
  padding: 40px 20px;
  background-color: #0c0f17;
}
.services__card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.services__card-icon svg {
  width: 40px;
  height: 40px;
}
.services__card--custom {
  max-width: 1484px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 40px;
}
.services__card-wrap {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
}
.services__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}
.services__card-description {
  min-height: 108px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
  margin-bottom: 20px;
}
.services__card-description--custom {
  min-height: 0;
  max-width: 800px;
}
.services__card-btn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 300px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-soft);
  padding: 16px 135px;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.services__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}

.prices__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.prices__description {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.prices__description span {
  color: #93acfe;
}
.prices__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
}
.prices__card {
  justify-content: space-between;
  border-radius: 25px;
  position: relative;
  z-index: 0;
  max-width: 480px;
  width: 100%;
  padding: 40px 20px 40px 35px;
  background-color: #001c1c;
}
.prices__card-absolute {
  background: #7e51ff;
  position: absolute;
  right: 50px;
  top: -17px;
  border-radius: 12px;
  box-shadow: var(--shadow-blue);
  padding: 7px 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #050912;
}
.prices__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
}
.prices__card-price {
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-soft);
  margin-bottom: 10px;
}
.prices__card-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}
.prices__card-wrap:nth-last-child(1) {
  margin-bottom: 20px;
}
.prices__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #9db8ff;
}
.prices__card-icon svg {
  width: 26px;
  height: 26px;
}
.prices__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #050912;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.prices__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.prices__adaptiv {
  display: flex;
  gap: 10px;
}
.prices__options {
  display: flex;
  column-gap: 20px;
}
.prices__options-card {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  border-radius: 25px;
  position: relative;
  z-index: 0;
  padding: 38px 104px 40px 40px;
  background-color: #001c1c;
  display: flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.prices__options-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}
.prices__options-price {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-soft);
}
.prices__options-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #050912;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.prices__options-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.prices__options-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.prices__options-icon svg {
  width: 40px;
  height: 40px;
}

.calculation__container {
  padding: 60px 0;
}
.calculation__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.calculation__description {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
}
.calculation__content {
  margin: 40px auto 0;
  max-width: 1484px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  gap: 24px;
}
.calculation__form, .calculation__result {
  border-radius: 25px;
  background-color: #0c0f17;
  border: 1px solid rgba(148, 177, 250, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.28), var(--shadow-blue);
}
.calculation__form {
  padding: 34px;
}
.calculation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.calculation__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculation__field--full {
  margin-bottom: 24px;
}
.calculation__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
.calculation__input, .calculation__select, .calculation__textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 177, 250, 0.2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.calculation__input, .calculation__select {
  min-height: 58px;
  padding: 0 20px;
}
.calculation__textarea {
  min-height: 132px;
  padding: 20px;
  resize: vertical;
}
.calculation__input::placeholder, .calculation__textarea::placeholder {
  color: rgba(196, 197, 201, 0.55);
}
.calculation__input:focus, .calculation__select:focus, .calculation__textarea:focus {
  border-color: rgba(148, 177, 250, 0.42);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(141, 171, 249, 0.08), var(--shadow-blue);
}
.calculation__select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #9db8ff 50%), linear-gradient(135deg, #9db8ff 50%, transparent 50%);
  background-position: calc(100% - 24px) 50%, calc(100% - 16px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}
.calculation__btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #050912;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.calculation__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.calculation__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.calculation__btn-icon svg {
  display: block;
}
.calculation__result {
  padding: 34px;
}
.calculation__result-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.calculation__result-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}
.calculation__result-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.calculation__result-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}
.calculation__result-box {
  min-height: 250px;
  margin-bottom: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 20px;
  border: 1px dashed rgba(148, 177, 250, 0.28);
  background: rgba(5, 9, 18, 0.32);
}
.calculation__result-box-icon {
  color: rgba(238, 237, 239, 0.75);
}
.calculation__result-box-icon svg {
  display: block;
  filter: drop-shadow(0 0 10px rgba(141, 171, 249, 0.22));
}
.calculation__result-text {
  max-width: 300px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-soft);
}
.calculation__result-list {
  display: flex;
  flex-direction: column;
}
.calculation__result-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(148, 177, 250, 0.12);
}
.calculation__result-row span {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}
.calculation__result-row strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-soft);
}

.work__container {
  padding: 60px 0;
}
.work__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 50px;
}
.work__list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 34px;
  padding-left: 50px;
}
.work__item {
  position: relative;
  z-index: 0;
}
.work__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 58px;
  width: calc(100% - 30px);
  height: 2px;
  background-image: linear-gradient(90deg, rgba(148, 177, 250, 0.42) 0 8px, transparent 8px 16px);
  background-size: 32px 2px;
  background-position: 0 0;
  opacity: 0.75;
  animation: workLineMove 1.6s linear infinite;
}
.work__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 17px;
  right: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(141, 171, 249, 0.45), 0 0 28px rgba(166, 140, 240, 0.22);
  z-index: 2;
}
.work__number {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #050912;
}
.work__item-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}
.work__item-text {
  max-width: 190px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
}

@keyframes workLineMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 32px 0;
  }
}
.about {
  margin-bottom: 70px;
}
.about__top {
  display: flex;
  margin-bottom: 25px;
}
.about__bottom {
  display: flex;
  column-gap: 140px;
  justify-content: center;
}
.about__wrapper {
  display: flex;
}
.about__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.about__description {
  max-width: 600px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
  margin-bottom: 16px;
}
.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #050912;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.about__wrapper--col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__items {
  display: flex;
  column-gap: 30px;
}
.about__items--position {
  margin: 0 auto;
}
.about__wrap {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 30px;
}
.about__card {
  border-radius: 25px;
  position: relative;
  padding: 20px 20px;
  background-color: #0c0f17;
}
.about__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.about__card-icon svg {
  width: 40px;
  height: 40px;
}
.about__card-text {
  font-weight: 700;
  color: #93acfe;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.about__card-description {
  max-width: 400px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
  margin-bottom: 16px;
}
.about__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.about__socials-title {
  font-weight: 700;
  color: #93acfe;
  text-transform: uppercase;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.about__socials-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.about__socials-link:hover {
  color: var(--color-blue);
  transform: translateX(4px);
}
.about__socials-link:hover .about__social-icon {
  border-color: var(--color-border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 34px rgba(141, 171, 249, 0.2);
}
.about__socials-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}
.about__socials-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #dbe4ff;
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.about__socials-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.about__socials-icon svg path,
.about__socials-icon svg rect,
.about__socials-icon svg circle,
.about__socials-icon svg g {
  fill: currentColor;
}
.about__social {
  display: flex;
  column-gap: 10px;
}
.about__social-link svg {
  width: 24px;
}
.about__form {
  max-width: 900px;
  width: 100%;
  padding: 34px;
  border-radius: 25px;
  background-color: #0c0f17;
  border: 1px solid rgba(148, 177, 250, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.28), var(--shadow-blue);
}
.about__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about__form-fields.is-hidden {
  display: none;
}
.about__form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.about__form-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
.about__form-input, .about__form-select, .about__form-textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 177, 250, 0.2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.about__form-input, .about__form-select {
  min-height: 58px;
  padding: 0 20px;
}
.about__form-textarea {
  min-height: 120px;
  padding: 20px;
  resize: vertical;
}
.about__form-input::placeholder, .about__form-textarea::placeholder {
  color: rgba(196, 197, 201, 0.55);
}
.about__form-input:focus, .about__form-select:focus, .about__form-textarea:focus {
  border-color: rgba(148, 177, 250, 0.42);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(141, 171, 249, 0.08), var(--shadow-blue);
}
.about__form-select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #9db8ff 50%), linear-gradient(135deg, #9db8ff 50%, transparent 50%);
  background-position: calc(100% - 24px) 50%, calc(100% - 16px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}
.about__form-status {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-soft);
  text-align: center;
}
.about__form-status--success {
  color: #94b1fa;
}
.about__form-status--error {
  color: #f87171;
}
.about__form-btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  color: #050912;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.about__form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.about__form-btn:active {
  transform: translateY(0);
  opacity: 0.85;
}
.about__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 50px;
}
.about__success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.about__success.is-visible {
  display: block;
}
.about__success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #050912;
}
.about__success-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: 14px;
}
.about__success-text {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.order-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.order-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 18, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 34px;
  border-radius: 25px;
  background-color: #0c0f17;
  border: 1px solid rgba(148, 177, 250, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.28), var(--shadow-blue);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s ease;
}
.order-modal.is-open .order-modal__dialog {
  transform: translateY(0) scale(1);
}
.order-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 177, 250, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.order-modal__close:hover {
  border-color: rgba(148, 177, 250, 0.42);
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(90deg);
}
.order-modal__title {
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
}
.order-modal__form-view.is-hidden, .order-modal__success-view.is-hidden {
  display: none;
}
.order-modal__success-view {
  text-align: center;
  padding: 18px 8px 8px;
}
.order-modal__success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #050912;
}
.order-modal__success-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: 14px;
}
.order-modal__success-text {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text-soft);
}
.order-modal .about__form {
  max-width: none;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.order-modal .about__title {
  margin-bottom: 24px;
}

body.order-modal-open {
  overflow: hidden;
}

.footer {
  padding: 50px 10px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(5, 9, 18, 0.82);
  box-shadow: var(--shadow-blue);
}
.footer__items {
  display: flex;
  column-gap: 200px;
  justify-content: center;
}
.footer__item {
  max-width: 400px;
}
.footer__item-link {
  text-align: center;
  font-family: "Syne Mono";
  font-weight: 700;
  font-size: 34px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer__item-description {
  margin: 0 auto;
  max-width: 350px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
}
.footer__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 10px;
}
.footer__link {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.footer__text {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 10px;
}

.absolut {
  margin: 0 auto;
  width: 710px;
}
.absolut__blocks {
  display: flex;
  column-gap: 15px;
  justify-content: center;
}
.absolut__wrapper {
  display: flex;
  flex-direction: column;
}
.absolut__variant {
  display: flex;
  padding: 8px 15px;
}
.absolut__variants {
  background: rgba(61, 122, 122, 0.2509803922);
  padding: 15px 20px;
  border: 1px solid #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.absolut__subtitle {
  inset: 0;
  display: block;
  max-width: 604px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: #7f7f7f;
}
.absolut__text {
  font-family: "Syne Mono";
  max-width: 604px;
  max-width: 604px;
  font-size: 30px;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.service-hero {
  padding: 80px 5px;
}
.service-hero__container {
  padding-top: 60px;
  justify-content: center;
  column-gap: 40px;
  display: flex;
  align-items: center;
}
.service-hero__left {
  width: 50%;
  position: relative;
}
.service-hero__left img {
  max-width: 100%;
}
.service-hero__right {
  width: 50%;
}
.service-hero__title {
  max-width: 620px;
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
}
.service-hero__title span {
  color: #93acfe;
}
.service-hero__description {
  max-width: 604px;
  margin: 24px 0 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.service-hero__description span {
  color: #93acfe;
}
.service-hero__connect {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-hero__telegram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #050912;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.service-hero__telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.service-hero__telegram-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.service-hero__btn {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-soft);
  padding: 26px;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.service-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}

.whom {
  padding: 20px 6px 50px;
}
.whom__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.whom__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.whom__card {
  border-radius: 25px;
  position: relative;
  z-index: 0;
  max-width: 480px;
  padding: 40px 40px;
  background-color: #0c0f17;
}
.whom__card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.whom__card-icon svg {
  width: 40px;
  height: 40px;
}
.whom__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}
.whom__card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
  margin-bottom: 20px;
}
.whom__card-description--custom {
  min-height: 0;
  max-width: 800px;
}

.package {
  padding: 20px 6px 50px;
}
.package__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.package__list {
  display: flex;
  column-gap: 30px;
  justify-content: center;
}
.package__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.package__card {
  min-height: 143px;
  border-radius: 25px;
  position: relative;
  z-index: 0;
  max-width: 700px;
  padding: 20px 10px 10px 25px;
  background-color: #0c0f17;
  display: flex;
  align-items: center;
  column-gap: 60px;
}
.package__card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 100%;
  background-color: #8dabf9;
}
.package__card-icon svg {
  width: 40px;
  height: 40px;
}
.package__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 15px;
}
.package__card-description {
  max-width: 1000px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.choice {
  padding: 60px 0 60px;
}
.choice__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.choice__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.choice__card {
  min-height: 280px;
  border-radius: 25px;
  position: relative;
  z-index: 0;
  max-width: 300px;
  padding: 20px;
  background-color: #001c1c;
}
.choice__card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.choice__card-icon svg {
  width: 40px;
  height: 40px;
}
.choice__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}
.choice__card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
  margin-bottom: 20px;
}
.choice__card-description--custom {
  min-height: 0;
  max-width: 800px;
}

.difference {
  padding: 20px 5px 80px;
}
.difference__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 24px;
}
.difference__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.difference__wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 30px;
}
.difference__card {
  border-radius: 25px;
  position: relative;
  z-index: 0;
  max-width: 500px;
  width: 100%;
  padding: 20px 20px;
  background-color: #0c0f17;
}
.difference__card-elementor {
  max-width: 700px;
  padding: 50px;
}
.difference__card-text {
  font-weight: 800;
  font-size: 36px;
}
.difference__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.difference__card-icon svg {
  width: 40px;
  height: 40px;
}
.difference__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
.difference__item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
}
.difference__item-icon svg {
  width: 20px;
  height: 20px;
}
.difference__item-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.job {
  padding: 30px 0 60px;
}
.job__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 34px;
}
.job__list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 34px;
}
.job__item {
  position: relative;
  z-index: 0;
}
.job__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 58px;
  width: calc(100% - 30px);
  height: 2px;
  background-image: linear-gradient(90deg, rgba(148, 177, 250, 0.42) 0 8px, transparent 8px 16px);
  background-size: 32px 2px;
  background-position: 0 0;
  opacity: 0.75;
  animation: workLineMove 1.6s linear infinite;
}
.job__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 17px;
  right: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(141, 171, 249, 0.45), 0 0 28px rgba(166, 140, 240, 0.22);
  z-index: 2;
}
.job__number {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #050912;
}
.job__item-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}
.job__item-text {
  max-width: 190px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.faq__container {
  padding: 60px 0;
}
.faq__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 40px;
}
.faq__items {
  display: flex;
  column-gap: 50px;
}
.faq__question {
  padding: 28px 32px;
  border-radius: 25px;
  background-color: #0c0f17;
  margin: 0 auto 25px;
  max-width: 1200px;
}
.faq__question:last-child {
  margin-bottom: 0;
}
.faq__question-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.faq__question-title {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}
.faq__question-plus {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 18px;
  border: 1px solid rgba(148, 177, 250, 0.14);
  color: var(--color-blue);
  font-size: 28px;
  font-weight: 300;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 23, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(141, 171, 249, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.faq__question-text {
  max-width: 1100px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-soft);
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.faq__question.is-open .faq__question-text {
  max-height: 500px;
  opacity: 1;
  margin-top: 24px;
}
.faq__question.is-open .faq__question-plus {
  transform: rotate(45deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 36px rgba(141, 171, 249, 0.22);
}
.faq__question:hover:not(.is-open) .faq__question-plus {
  transform: rotate(90deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -12px 24px rgba(0, 0, 0, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 36px rgba(141, 171, 249, 0.22);
}

.necessary__block {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  border-radius: 25px;
  position: relative;
  z-index: 0;
  padding: 40px 20px 40px 30px;
  background-color: #0c0f17;
  margin-bottom: 60px;
  background: #001c1c;
}
.necessary__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-text);
  margin-bottom: 34px;
}
.necessary__description {
  margin: 0 auto;
  max-width: 758px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.necessary__right {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.necessary__left {
  max-width: 740px;
}
.necessary__tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #050912;
  background: #27a8e9;
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.necessary__tg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}
.necessary__tg-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.necessary__btn {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: #04050b;
  padding: 27px 69px;
  background: #a093f2;
  border-radius: 999px;
  border: 1px solid rgba(148, 177, 250, 0.28);
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.necessary__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(141, 171, 249, 0.35);
}

@media (max-width: 1560px) {
  .prices__card {
    max-width: 400px;
  }
}
@media (max-width: 1430px) {
  .prices__list {
    margin-bottom: 30px;
  }
  .prices__options {
    flex-direction: column;
    gap: 15px;
  }
  .prices__options-card {
    max-width: 1200px;
  }
}
@media (max-width: 1320px) {
  .hero__container {
    column-gap: unset;
  }
  .hero__left {
    max-width: 440px;
  }
}
@media (max-width: 1290px) {
  .prices__card {
    max-width: 350px;
  }
}
@media (max-width: 1140px) {
  .prices__card {
    max-width: 416px;
  }
  .prices__options-card {
    max-width: 865px;
  }
}
@media (max-width: 1080px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__description {
    font-size: 18px;
  }
}
@media (max-width: 1060px) {
  .hero__left {
    max-width: 70%;
  }
  .services__card--custom {
    max-width: fit-content;
    display: flex;
    flex-direction: column;
  }
  .work__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding-left: 20px;
  }
  .work__item:nth-child(4n)::after, .work__item:nth-child(4n)::before {
    display: none;
  }
  .work__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 14px;
  }
  .work__item-title {
    font-size: 16px;
  }
  .work__item-text {
    max-width: none;
    font-size: 13px;
  }
}
@media (max-width: 1040px) {
  .hero__left {
    max-width: 500px;
  }
}
@media (max-width: 1000px) {
  body.menu-open {
    overflow: hidden;
  }
  .header {
    padding: 14px 20px;
  }
  .header__logo {
    position: relative;
    z-index: 110;
  }
  .header__logo a {
    color: var(--color-text);
    text-decoration: none;
  }
  .header__burger {
    display: flex;
    z-index: 110;
  }
  .header__btn {
    display: none;
  }
  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 104;
    background: rgba(5, 9, 18, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 105;
    width: min(320px, 88vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 88px 28px 190px;
    background: rgba(8, 12, 22, 0.98);
    border-left: 1px solid var(--color-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  .header__nav-link {
    font-size: 24px;
    font-weight: 700;
    transition: opacity 0.2s ease;
  }
  .header__nav-link:active {
    opacity: 0.65;
  }
  .header__block {
    display: none;
  }
  .header.menu-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.menu-open .header__nav {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .header.menu-open .header__block {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 18px;
    position: fixed;
    right: 28px;
    bottom: 40px;
    left: auto;
    z-index: 106;
    width: calc(min(320px, 88vw) - 56px);
  }
  .header.menu-open .header__socials {
    justify-content: flex-start;
    column-gap: 16px;
  }
  .header.menu-open .header__socials-link svg {
    width: 32px;
    height: 32px;
  }
  .header.menu-open .header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 28px;
    font-size: 15px;
    line-height: 1.1;
  }
  .calculation__content {
    grid-template-columns: 1fr;
  }
  .about__bottom {
    column-gap: 40px;
  }
  .footer__items {
    column-gap: 60px;
  }
}
@media (max-width: 980px) {
  .services__list {
    gap: 16px;
  }
}
@media (max-width: 976px) {
  .hero__container {
    gap: 20px;
    flex-direction: column;
  }
  .services__title {
    font-size: 30px;
  }
  .services__description {
    font-size: 18px;
    max-width: 630px;
  }
  .services__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 340px));
    justify-content: center;
    gap: 12px;
  }
  .services__card {
    max-width: 340px;
    width: 100%;
    height: 100%;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
  }
  .services__card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  .services__card-icon svg {
    width: 32px;
    height: 32px;
  }
  .services__card-title {
    font-size: 17px;
    line-height: 1.25;
    min-height: 43px;
    margin-bottom: 8px;
  }
  .services__card-description {
    min-height: 80px;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  .services__card-description--custom {
    min-height: 0;
  }
  .services__card-btn {
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    font-size: 13px;
  }
  .services__card--custom {
    grid-column: 1/-1;
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 24px;
  }
  .services__card--custom .services__card-wrap {
    margin-bottom: 0;
    flex: 1;
  }
  .services__card--custom .services__card-btn {
    margin-top: 0;
    margin-left: auto;
    width: auto;
    max-width: 300px;
    flex-shrink: 0;
    padding: 16px 40px;
  }
  .services__block {
    gap: 8px;
  }
  .services__tech {
    column-gap: 6px;
  }
  .services__tech-icon svg {
    width: 22px;
    height: 22px;
  }
  .services__tech-icon--woo svg {
    width: 72px;
    height: 34px;
  }
}
@media (max-width: 900px) {
  .prices__options-card {
    max-width: 749px;
  }
}
@media (max-width: 880px) {
  .prices__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .prices__card {
    max-width: none;
    width: 100%;
    height: 100%;
    padding: 22px 14px 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .prices__card-absolute {
    right: 12px;
    top: -12px;
    font-size: 12px;
    padding: 5px 8px;
  }
  .prices__card-title {
    font-size: 17px;
    line-height: 1.25;
    min-height: 42px;
    margin-bottom: 8px;
  }
  .prices__card-price {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .prices__card-point {
    flex: 1;
    min-height: 56px;
    margin-bottom: 10px;
  }
  .prices__card-wrap {
    gap: 8px;
    margin-bottom: 8px;
  }
  .prices__card-wrap:nth-last-child(1) {
    margin-bottom: 0;
  }
  .prices__card-text {
    font-size: 13px;
    line-height: 1.4;
  }
  .prices__card-icon svg {
    width: 20px;
    height: 20px;
  }
  .prices__card-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
  }
}
@media (max-width: 775px) {
  .header {
    padding: 12px 16px;
  }
  .header__logo {
    font-size: 26px;
  }
  .header__socials {
    column-gap: 11px;
  }
  .hero {
    padding-top: 72px;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__description {
    font-size: 16px;
    line-height: 1.6;
  }
  .hero__connect {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero__telegram-btn, .hero__btn {
    width: 100%;
    justify-content: center;
  }
  .services__container {
    padding: 40px 0;
  }
  .prices__options-card {
    max-width: 100%;
    padding: 32px 20px;
  }
  .prices__options-btn {
    width: 100%;
    padding: 14px 24px;
  }
  .calculation__container {
    padding: 40px 0;
  }
  .calculation__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calculation__form, .calculation__result {
    padding: 24px 18px;
  }
  .calculation__title {
    font-size: 30px;
  }
  .work__container {
    padding: 40px 0;
  }
  .work__title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .work__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-left: 10px;
  }
  .work__item:nth-child(4n)::after, .work__item:nth-child(4n)::before {
    display: none;
  }
  .work__item:not(:last-child)::after {
    top: 18px;
    left: 48px;
  }
  .work__item:not(:last-child)::before {
    top: 13px;
    right: -12px;
    width: 10px;
    height: 10px;
  }
  .work__number {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .work__item-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .work__item-text {
    max-width: none;
    font-size: 12px;
    line-height: 1.4;
  }
  .about {
    margin-bottom: 40px;
  }
  .about__title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .about__form {
    padding: 24px 18px;
  }
  .about__success-title {
    font-size: 26px;
  }
  .about__success-text {
    font-size: 15px;
  }
  .order-modal {
    padding: 12px;
  }
  .order-modal__dialog {
    padding: 24px 18px;
  }
  .order-modal__title, .order-modal__success-title {
    font-size: 28px;
  }
  .order-modal__close {
    top: 12px;
    right: 12px;
  }
  .order-modal .about__form-row {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 40px 16px;
  }
  .footer__items {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    column-gap: 0;
  }
  .footer__item {
    max-width: 100%;
  }
}
@media (max-width: 764px) {
  .prices__options-card {
    gap: 20px;
    display: flex;
    max-width: 637px;
    flex-direction: column;
    padding: 35px 20px;
  }
}
@media (max-width: 660px) {
  .about__form-select {
    padding: 0 0 0 10px;
    font-size: 14px;
  }
  .about__form-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 3px;
  }
}
@media (max-width: 560px) {
  .work__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
    padding-left: 0;
  }
  .work__item:nth-child(2n)::after, .work__item:nth-child(2n)::before {
    display: none;
  }
  .work__item:not(:last-child)::after {
    top: 16px;
    left: 42px;
  }
  .work__item:not(:last-child)::before {
    top: 11px;
    right: -10px;
  }
  .work__number {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .work__item-title {
    font-size: 13px;
  }
  .work__item-text {
    font-size: 11px;
  }
}
@media (max-width: 530px) {
  .header__logo {
    font-size: 22px;
  }
  .header__nav-link {
    font-size: 24px;
  }
  .header__socials-link svg {
    fill: #8dabf9;
    width: 22px;
  }
  .hero__title {
    font-size: 28px;
    letter-spacing: -0.03em;
  }
  .hero__description {
    font-size: 15px;
    margin-top: 16px;
  }
  .services__title {
    font-size: 26px;
  }
  .services__description {
    font-size: 16px;
  }
  .services__list {
    gap: 10px;
  }
  .services__card {
    padding: 16px 10px;
  }
  .services__card-wrap {
    flex-direction: column;
    gap: 8px;
  }
  .services__card-title {
    font-size: 15px;
    min-height: 38px;
  }
  .services__card-description {
    font-size: 12px;
    min-height: 68px;
  }
  .services__card-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
  .services__card--custom {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 10px;
  }
  .services__card--custom .services__card-btn {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .prices__title {
    font-size: 26px;
  }
  .prices__description {
    font-size: 16px;
  }
  .prices__list {
    gap: 10px;
  }
  .prices__card {
    padding: 18px 10px 16px 12px;
  }
  .prices__card-title {
    font-size: 15px;
    min-height: 38px;
    margin-bottom: 6px;
  }
  .prices__card-price {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .prices__card-point {
    min-height: 52px;
    margin-bottom: 8px;
  }
  .prices__card-text {
    font-size: 12px;
  }
  .prices__card-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
  .calculation__title {
    font-size: 26px;
  }
  .calculation__description {
    font-size: 16px;
  }
  .calculation__result-box {
    min-height: 180px;
    padding: 24px 16px;
  }
  .work__title,
  .about__title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .services__list {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .services__card {
    max-width: none;
  }
  .prices__list {
    grid-template-columns: 1fr;
  }
  .prices__card-title {
    min-height: 0;
  }
  .prices__card-point {
    flex: 0;
    min-height: 0;
  }
}
@media (max-width: 976px) {
  .service-hero__container {
    flex-direction: column;
    gap: 20px;
  }
  .service-hero__left, .service-hero__right {
    width: 100%;
  }
  .absolut {
    width: 100%;
    max-width: 100%;
  }
  .whom__list {
    gap: 16px;
  }
  .package__list {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
  .package__card {
    max-width: 100%;
    width: 100%;
  }
  .choice__card {
    max-width: 100%;
    width: 100%;
  }
  .difference__card {
    max-width: 100%;
  }
  .job__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
  .job__item:nth-child(4n)::after, .job__item:nth-child(4n)::before {
    display: none;
  }
  .faq__items {
    flex-direction: column;
    gap: 0;
  }
  .faq__item {
    width: 100%;
  }
}
@media (max-width: 775px) {
  .service-hero {
    padding: 40px 0;
  }
  .service-hero__container {
    padding-top: 20px;
  }
  .service-hero__title {
    font-size: 34px;
  }
  .service-hero__description {
    font-size: 16px;
    line-height: 1.6;
  }
  .service-hero__connect {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .service-hero__telegram-btn, .service-hero__btn {
    width: 100%;
    justify-content: center;
  }
  .absolut__blocks {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }
  .absolut__text {
    font-size: 22px;
  }
  .absolut__subtitle {
    font-size: 16px;
  }
  .whom__card {
    max-width: 100%;
  }
  .package__card {
    flex-direction: column;
    align-items: flex-start;
    column-gap: 0;
    gap: 12px;
    padding: 20px;
  }
  .choice__list {
    gap: 16px;
  }
  .choice__card {
    max-width: 100%;
    width: 100%;
  }
  .difference__wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .difference__card-elementor {
    padding: 24px 20px;
  }
  .difference__card-text {
    font-size: 28px;
  }
  .job__title {
    font-size: 30px;
  }
  .job__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-left: 10px;
  }
  .job__item:nth-child(2n)::after, .job__item:nth-child(2n)::before {
    display: none;
  }
  .job__item:not(:last-child)::after {
    top: 18px;
    left: 48px;
  }
  .job__item:not(:last-child)::before {
    top: 13px;
    right: -12px;
    width: 10px;
    height: 10px;
  }
  .job__number {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .job__item-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .job__item-text {
    max-width: none;
    font-size: 12px;
    line-height: 1.4;
  }
  .necessary__block {
    flex-direction: column;
    padding: 24px 20px;
  }
  .necessary__right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .faq__container {
    padding: 40px 0;
  }
  .faq__title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .faq__items {
    flex-direction: column;
    gap: 0;
  }
  .faq__question {
    padding: 20px 18px;
  }
  .faq__question-title {
    font-size: 18px;
  }
  .faq__question-plus {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
@media (max-width: 530px) {
  .service-hero__title {
    font-size: 28px;
    letter-spacing: -0.03em;
  }
  .service-hero__description {
    font-size: 15px;
  }
  .absolut__text {
    font-size: 18px;
  }
  .absolut__variants {
    padding: 12px 14px;
  }
  .whom__title,
  .package__title,
  .choice__title,
  .difference__title,
  .job__title,
  .faq__title,
  .necessary__title {
    font-size: 26px;
  }
  .faq__question {
    padding: 16px 14px;
  }
  .faq__question-title {
    font-size: 16px;
  }
  .faq__question.is-open .faq__question-text {
    font-size: 14px;
  }
}
