@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

a {
  text-decoration: none;
}
a:active, a:hover {
  outline: 0;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus {
  outline: 0;
}

img,
audio,
video {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
video,
img,
svg {
  vertical-align: middle;
}

iframe {
  border: 0;
}

textarea {
  resize: none; /*remove the resize handle on the bottom right*/
  overflow: auto;
  vertical-align: top;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background-color: transparent;
  outline: none;
  border: none;
}

button,
input {
  line-height: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

ul {
  list-style: none;
}

/*
  Colors
*/
body {
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  background-color: #0F0F0F;
}

button, input {
  font-family: "Montserrat", sans-serif;
}

#app {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  overflow-x: hidden;
}

.container {
  display: block;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 15px;
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

.blue {
  color: #0064FD;
}

a {
  color: #fff;
  text-decoration: none;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 400px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 50px;
  max-width: 270px;
  text-align: center;
}
.btn:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
}

.header {
  padding-bottom: 200px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header ul {
  display: flex;
  gap: 40px;
  justify-content: center;
}

@media (max-width: 1499px) {
  .header {
    padding-bottom: 150px;
  }
}
@media (max-width: 576px) {
  .header ul li:nth-child(3) {
    display: none;
  }
  .header {
    padding-bottom: 100px;
  }
}
.main {
  padding-top: 30px;
  padding-bottom: 200px;
  background-attachment: fixed;
  background-image: url("../img/steps/2.png");
  position: relative;
}
.main:before, .main:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/steps/grad.png");
  background-repeat: no-repeat;
}
.main::after {
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.main h1 {
  font-size: 56px;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.main .subtitle {
  font-size: 24px;
  text-align: center;
}
.main .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main .container {
  position: relative;
  z-index: 2;
}

:root {
  --color-bg1: rgb(0, 0, 0);
  --color-bg2: rgb(0, 17, 82);
  --color1: 30, 100, 255;
  --color2: 15, 30, 100;
  --color3: 70, 180, 250;
  --color4: 8, 20, 70;
  --color5: 100, 150, 230;
  --color-interactive: 60, 120, 255;
  --circle-size: 80%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
}
.gradient-bg svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

@media (max-width: 1499px) {
  .main h1 {
    font-size: 40px;
    max-width: 810px;
    margin: 0 auto 40px;
  }
  .main .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .main h1 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .main h1 {
    font-size: 29px;
  }
  .main {
    padding-bottom: 150px;
  }
}
.errors {
  padding-top: 100px;
  padding-bottom: 200px;
}
.errors-wrap {
  display: flex;
  gap: 30px;
}
.errors-wrap-1 {
  margin-bottom: 60px;
}
.errors-wrap-1 .errors-item {
  max-width: 40%;
}
.errors-item {
  max-width: 32%;
  font-size: 16px;
}
.errors-item img {
  margin-bottom: 20px;
}
.errors .images-btns {
  display: flex;
  gap: 20px;
}
.errors .images {
  position: relative;
}
.errors .cursor {
  position: absolute;
  right: -175px;
  top: 65px;
  animation: 3s infinite linear cursor;
}
.errors .img-text {
  margin-top: 30px;
  font-size: 22px;
  max-width: 400px;
  font-weight: bold;
}
.errors .img-text span {
  color: #EB0000;
}
.errors h2 {
  margin-bottom: 80px;
}

@keyframes cursor {
  from {
    transform: translate(10px, 10px);
  }
  50% {
    transform: translate(40px, 40px);
  }
  to {
    transform: translate(10px, 10px);
  }
}
@media (max-width: 1199px) {
  .errors h2 {
    max-width: 850px;
  }
}
@media (max-width: 991px) {
  .errors h2 {
    font-size: 35px;
  }
  .errors .errors-wrap {
    flex-wrap: wrap;
    gap: 0;
  }
  .errors .errors-wrap-1 {
    order: 3;
  }
  .errors .container {
    display: flex;
    flex-wrap: wrap;
  }
  .errors .errors-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .errors {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .errors h2 {
    font-size: 25px;
  }
  .errors .errors-item {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .errors .images-btns {
    max-width: 90%;
  }
  .errors .images-btns img {
    width: 30%;
  }
  .errors .cursor {
    width: 100px;
    right: 20px;
    top: 30px;
  }
  .errors .img-text {
    max-width: 80%;
  }
  .errors-wrap-1 {
    margin-bottom: 0;
  }
}
.team {
  padding: 50px 0;
  padding-top: 100px;
}
.team-wrap {
  display: flex;
  gap: 50px;
  align-items: center;
}
.team .text {
  max-width: 500px;
}
.team .text p {
  margin-bottom: 20px;
}
.team .text p span {
  font-weight: bold;
}
.team img {
  width: 500px;
  max-width: 500px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .team-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .team {
    padding-top: 70px;
  }
  .team h2 {
    font-size: 25px;
  }
  .team img {
    width: 100%;
  }
}
.services {
  padding: 50px 0;
  padding-bottom: 100px;
}
.services-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.services .title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}
.services .descr {
  max-width: 287px;
}
.services .item {
  width: 45%;
}
.services .btn {
  margin-top: 50px;
}
.services .item {
  background-color: rgb(0, 100, 253);
  padding: 30px;
}
.services .item {
  position: relative;
}
.services .item:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
}
.services .item-1:before {
  background-image: url("../img/services/1.png");
  height: 185px;
}
.services .item-2:before {
  background-image: url("../img/services/2.png");
  height: 180px;
}
.services .item-3:before {
  background-image: url("../img/services/3.png");
}
.services .item-4:before {
  background-image: url("../img/services/4.png");
  height: 160px;
}

@media (max-width: 1199px) {
  .services .item:before {
    width: 120px;
    height: 120px;
  }
  .services .item-4:before {
    height: 95px;
  }
}
@media (max-width: 991px) {
  .services-wrap {
    flex-wrap: wrap;
  }
  .services .item {
    width: 100%;
  }
  .services .descr {
    max-width: 400px;
  }
  .services .item:before {
    width: 170px;
    height: 170px;
  }
  .services .item-4:before {
    height: 134px;
  }
}
@media (max-width: 767px) {
  .services .descr {
    max-width: 334px;
  }
}
@media (max-width: 576px) {
  .services h2 {
    font-size: 25px;
  }
  .services .item {
    padding: 20px;
    padding-bottom: 145px;
  }
  .services .item-1:before {
    height: 157px;
  }
}
.projects-wrap {
  display: flex;
  flex-wrap: wrap;
}
.projects img {
  width: 50%;
}

@media (max-width: 767px) {
  .projects img {
    width: 100%;
  }
}
.steps {
  padding: 100px 0;
  background-attachment: fixed;
  background-image: url("../img/steps/3.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.steps:before, .steps:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/steps/grad.png");
  background-repeat: no-repeat;
}
.steps::after {
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.steps h2 {
  max-width: 900px;
}
.steps .item {
  margin-bottom: 50px;
  position: relative;
  padding-left: 150px;
}
.steps .item:before {
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  color: #0064FD;
  font-size: 200px;
  font-weight: bold;
  line-height: 1;
}
.steps .item .title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}
.steps .item .descr {
  max-width: 500px;
}
.steps .item-1:before {
  content: "1";
  left: 30px;
}
.steps .item-2 {
  margin-left: 150px;
}
.steps .item-2:before {
  content: "2";
}
.steps .item-3 {
  margin-left: 300px;
}
.steps .item-3:before {
  content: "3";
}
.steps .item-4 {
  margin-left: 450px;
}
.steps .item-4:before {
  content: "4";
  left: -30px;
}

@media (max-width: 991px) {
  .steps .item:before {
    font-size: 120px;
    top: -10px;
  }
  .steps .item {
    padding-left: 110px;
  }
  .steps .item-2 {
    margin-left: 100px;
  }
  .steps .item-3 {
    margin-left: 200px;
  }
  .steps .item-4 {
    margin-left: 300px;
  }
  .steps .item-4:before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .steps .item-2,
  .steps .item-3,
  .steps .item-4 {
    margin-left: 0;
  }
  .steps .item-1:before {
    left: 15px;
  }
}
@media (max-width: 576px) {
  .steps {
    padding: 70px 0;
  }
  .steps h2 {
    font-size: 25px;
  }
  .steps .item:before {
    font-size: 90px;
  }
  .steps .item {
    padding-left: 85px;
  }
  .steps .item-4 {
    margin-bottom: 0;
  }
}
.order {
  padding: 100px 0;
}
.order h2 {
  max-width: 800px;
}
.order .order-wrap {
    display: flex;
    align-items: flex-start;
}
.order form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.order .form-wrap {
      max-width: 650px;
}
.order .img-wrap {
    margin-left: 60px;
    margin-top: -20px;
}
.order .img-text {
    font-size: 16px;
    background-color: #191919;
    padding: 20px;
    max-width: 276px;
    margin-top: -50px;
}
.order img {
    max-width: 340px;
    height: 100%;
}
.order input, .order textarea {
  border-bottom: 2px solid #fff;
  padding: 15px;
  padding-left: 0;
  width: 310px;
  font-family: inherit;
  color: #fff;
}
.order textarea {
    width: 100%;
}
.order .btn {
  text-align: center;
  margin: 0;
  padding: 15px;
}
.order .subtitle {
  max-width: 800px;
  margin-bottom: 50px;
}

.order .checkbox-wrapper {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.order .checkbox-wrapper input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.order .custom-checkbox {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.order .custom-checkbox svg {
  width: 16px;
  height: 16px;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.order .checkbox-wrapper input[type=checkbox]:checked + .custom-checkbox {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.order .checkbox-wrapper input[type=checkbox]:checked + .custom-checkbox svg {
  opacity: 1;
}
.order {
  /* Текст оферты + ссылка */
}
.order .offer-text {
  font-size: 0.95rem;
  line-height: 1.4;
}
.order .offer-link {
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  transition: all 0.2s;
}
.order {
  /* Стиль для заблокированной кнопки (динамический класс через JS) */
}
.order .btn-disabled {
  background: #b9c7d9;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 0.7;
}
.order .btn-disabled:hover {
  background: #b9c7d9;
  transform: none;
  box-shadow: none;
}
.order {
  /* Сообщение об ошибке или подсказка */
}
.order .error-message {
  color: #e11d48;
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
  background: #fff0f3;
  border-radius: 40px;
  padding: 8px 12px;
  display: inline-block;
  width: auto;
}
.order .notification-area {
  min-height: 52px;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 1199px) {
    .order input {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .order .order-wrap {
        flex-wrap: wrap;
    }
    .order .img-wrap {
        margin-top: 30px;
        text-align: center;
        margin-left: 0;
    }
    .order .img-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
  .order form {
    flex-wrap: wrap;
  }
  .order input {
    width: 100%;
  }
  .order .btn {
    margin-top: 30px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .order h2 {
    font-size: 25px;
  }
  .order {
    padding: 70px 0;
  }
}
.footer {
  background-color: #191919;
  padding: 30px 0;
  font-size: 14px;
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */