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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  min-width: 320px;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: #22252a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:focus-visible {
  outline: 2px solid #43ABF0;
  outline-offset: 2px;
}

button {
  font-family: inherit;
  cursor: pointer;
}
button:focus-visible {
  outline: 2px solid #43ABF0;
  outline-offset: 2px;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #43ABF0;
  outline-offset: 2px;
}

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

.blue {
  color: #43ABF0;
}

body.no-scroll {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(16, 16, 29, 0.9);
}
.header__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}
.header__logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #ffffff;
  flex-shrink: 0;
}
.header__logo:hover {
  opacity: 0.9;
}
@media (min-width: 480px) {
  .header__logo {
    font-size: 28px;
  }
}
.header__nav {
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    background: #22252a;
    padding: 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }
  .header--menu-open .header__nav {
    transform: translateX(0);
    visibility: visible;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 24px;
  }
}
@media (max-width: 860px) {
  .header__menu {
    gap: 20px;
  }
}
.header__link {
  position: relative;
  display: inline-block;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #43ABF0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease-out;
}
.header__link:hover::after, .header__link--active::after {
  transform: scaleX(1);
}
.header__link:hover {
  color: #43ABF0;
}
.header__link--active {
  color: #43ABF0;
}
@media (max-width: 767px) {
  .header__link {
    padding: 14px 20px;
    font-size: 1rem;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header--menu-open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header--menu-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header--menu-open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  font-family: "Lato", sans-serif;
}
@media (min-width: 768px) {
  .hero {
    min-height: 750px;
    padding: 200px 0 100px;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 850px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #272733;
  background-image: url("../assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: -100px center;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .hero__bg {
    background-position: center;
  }
}
.hero__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 0.6s ease-out;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__container {
    animation: none;
  }
}
.hero__title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: #000000;
}
@media (min-width: 480px) {
  .hero__title {
    font-size: 38px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
    margin-bottom: 80px;
  }
}
.hero__subtitle {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #000000;
  margin: 10px 0;
}
.hero__list {
  margin: 0 0 40px;
  padding-left: 0;
}
@media (min-width: 480px) {
  .hero__list {
    margin: 0 0 80px;
  }
}
.hero__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
}
.hero__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #43ABF0;
  border-radius: 50%;
}
.hero__list-item:last-child {
  margin-bottom: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
  }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.hero__btn:hover {
  transform: translateY(-1px);
}
.hero__btn--primary {
  background: #43ABF0;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.hero__btn--primary:hover {
  box-shadow: inset 0 2px 12px rgba(210, 241, 255, 0.4), 0 2px 12px rgba(77, 184, 232, 0.4);
}
.hero__btn--secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}
.hero__btn--secondary:hover {
  color: #000000;
  border-color: #43ABF0;
  box-shadow: inset 0 2px 12px rgba(77, 184, 232, 0.4);
}

.order {
  padding: 60px 0;
  background-color: #272733;
  background-image: url("../assets/images/dots-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Lato", sans-serif;
}
@media (min-width: 768px) {
  .order {
    padding: 120px 0;
  }
}
.order__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.order__title {
  margin: 0 0 30px;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 480px) {
  .order__title {
    font-size: 36px;
  }
}
.order__title-accent {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  color: #43ABF0;
}
@media (min-width: 768px) {
  .order__title-accent {
    font-size: 2.25rem;
  }
}
.order__subtitle {
  margin: 0 0 40px;
  font-size: 18px;
  color: #bbbbbb;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 480px) {
  .order__subtitle {
    margin: 0 0 80px;
  }
}
.order__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .order__steps {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 80px;
    position: relative;
  }
}
.order__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 160px;
  max-width: 160px;
  text-align: center;
}
@media (min-width: 1280px) {
  .order__step {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .order__step::after {
    content: "";
    position: absolute;
    top: 45px;
    left: calc(50% + 66px);
    right: -72px;
    height: 6px;
    opacity: 0.8;
    background-image: radial-gradient(circle 6px at 3px 50%, #ffffff 50%, transparent 50%), radial-gradient(circle 6px at 25% 50%, #ffffff 50%, transparent 50%), radial-gradient(circle 6px at 50% 50%, #ffffff 50%, transparent 50%), radial-gradient(circle 6px at 75% 50%, #ffffff 50%, transparent 50%), radial-gradient(circle 6px at calc(100% - 3px) 50%, #ffffff 50%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 100% 6px;
    pointer-events: none;
  }
  .order__step:last-child::after {
    display: none;
  }
}
.order__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  background: #43ABF0;
  color: #ffffff;
  border: 5px solid #286690;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .order__step-icon {
    transition: none;
  }
}
.order__step-icon svg {
  width: 24px;
  height: 24px;
}
.order__step:hover .order__step-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(77, 184, 232, 0.35);
}
.order__step-label {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.35;
}
.order__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.order__form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .order__form-row--triple {
    flex-direction: row;
    gap: 30px;
  }
  .order__form-row--triple > * {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .order__form-row--slider-file {
    flex-direction: row;
    gap: 30px;
  }
}
.order__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order__field--wide {
  width: 100%;
}
.order__field--no-label {
  gap: 0;
}
.order__field--slider {
  flex: 0 0 66%;
  min-width: 0;
}
.order__field-label {
  font-size: 0.875rem;
  color: #bbbbbb;
}
.order__field-label--inline {
  display: inline-block;
}
.order__field-input-wrap {
  position: relative;
  display: block;
}
.order__custom-select {
  position: relative;
  width: 100%;
}
.order__select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.order__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #22252a;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.order__select-trigger:active, .order__custom-select--open .order__select-trigger {
  background: #3D4050;
  color: #ffffff;
  border-color: #3D4050;
  border-radius: 3px 3px 0 0;
}
.order__select-trigger:focus {
  outline: none;
  border-color: #3D4050;
}
.order__select-value {
  flex: 1;
  text-align: left;
}
.order__select-arrow {
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.order__custom-select--open .order__select-arrow {
  transform: rotate(180deg);
}
.order__select-dropdown {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  padding: 0;
  max-height: 180px;
  overflow-y: auto;
  background: #272733;
  border: 1px solid #3D4050;
  border-radius: 3px;
  list-style: none;
  z-index: 10;
}
.order__select-dropdown::-webkit-scrollbar {
  width: 6px;
}
.order__select-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}
.order__select-dropdown::-webkit-scrollbar-thumb {
  background: #43ABF0;
  border-radius: 3px;
}
.order__select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #43ABF0;
}
@supports (scrollbar-color: #43ABF0 rgba(255, 255, 255, 0.08)) {
  .order__select-dropdown {
    scrollbar-color: #43ABF0 rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
  }
}
.order__select-option {
  padding: 6px 12px;
  font-size: 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
}
.order__select-option:hover {
  color: #43ABF0;
}
.order__select-option--selected {
  color: #43ABF0;
}
.order__input {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font-size: 1rem;
  color: #22252a;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.order__input::placeholder {
  color: #272733;
}
.order__input:focus {
  border-color: #43ABF0;
  box-shadow: 0 0 0 1px #43ABF0;
  outline: none;
}
.order__slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.order__slider-label {
  font-size: 0.875rem;
  color: #bbbbbb;
}
.order__range-wrap {
  position: relative;
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}
.order__range {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 8px;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}
.order__range::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ffffff;
  border-radius: 3px;
}
.order__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -10px;
  background: #43ABF0;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #286690;
  transition: transform 0.2s ease;
}
.order__range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.order__range::-moz-range-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  border: none;
}
.order__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #43ABF0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.order__slider-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.order__slider-value output, .order__slider-value span {
  padding: 0;
  margin: 0;
  line-height: 1;
}
.order__file-wrap {
  flex-shrink: 0;
  flex: 1;
}
.order__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.order__file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #22252a;
  background: #ffffff;
  border: 2px solid #43ABF0;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.order__file-label:hover {
  border-color: #43ABF0;
  background: #f8fcff;
}
.order__file-icon {
  flex-shrink: 0;
  color: #22252a;
}
.order__form-submit {
  margin-top: 10px;
  text-align: center;
}
.order__submit {
  height: 48px;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: #43ABF0;
  border: 1px solid #ffffff;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.order__submit:hover {
  background: #43ABF0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(77, 184, 232, 0.4);
}
@media (min-width: 480px) {
  .order__submit {
    width: 370px;
  }
}

.footer {
  padding: 20px 0;
  background: #3D4050;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__container {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    text-align: left;
  }
}
.footer__copyright {
  flex-shrink: 0;
}
.footer__text {
  margin: 0;
  font-size: 0.8125rem;
  color: #ffffff;
  line-height: 1.5;
}
.footer__divider {
  display: none;
  width: 1px;
  height: 16px;
  background: #C3C3C3;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .footer__divider {
    display: block;
  }
}
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}
@media (min-width: 1024px) {
  .footer__payments {
    flex: 1 1 auto;
    justify-content: center;
    gap: 16px 24px;
    min-width: 0;
  }
}
.footer__payment-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #C3C3C3;
}
.footer__payment-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.footer__payment-name {
  line-height: 1.4;
}
.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .footer__contacts {
    margin-left: auto;
  }
}
.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #C3C3C3;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #43ABF0;
}
.footer__icon {
  flex-shrink: 0;
  color: #43ABF0;
}
