.progress-container {
      position: relative;
      width: 80%;
      max-width: 800px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .step {
      position: relative;
      text-align: center;
      z-index: 2;
      width: 25%;
      font-size: 12px;
    }

    .step::before {
      content: '';
      display: block;
      margin: 0 auto 10px auto;
      width: 14px;
      height: 14px;
      border: 2px solid white;
      border-radius: 50%;
      background-color: #111;
      z-index: 2;
      position: relative;
    }

    .progress-line {
      position: absolute;
      top: 5px;
      left: 0;
      height: 2px;
      width: 100%;
      background: rgba(255, 255, 255, 0.2);
      z-index: 1;
      overflow: hidden;
    }

    .progress-line::before {
      content: '';
      position: absolute;
      height: 100%;
      width: 0%;
      background: white;
      animation: fillProgress 4s linear infinite;
    }

    @keyframes fillProgress {
      0% {
        width: 0%;
        left: 0%;
      }
      50% {
        width: 100%;
        left: 0%;
      }
      100% {
        width: 0%;
        left: 100%;
      }
    }

  /* Анимация поля при фокусе */
.form-control:focus {
  outline: none;
  border-color: #5bd6e9;
  box-shadow: 0 0 8px rgba(104, 225, 225, 0.6);
  transition: all 0.3s ease;
  background-color: #1f2124;
}

.link-hover-3 {
  z-index: 1;
  position: relative;
  display: inline-block;
}

.link-hover-3::before {
  content: '';
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  background: linear-gradient(45deg, rgb(0, 195, 255) 0%, rgb(109, 172, 212) 100%);
  height: 30%;

}


.typewriter {
  font-family: monospace;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fff;
  animation: typing 4s steps(70, end), blink-caret 0.75s step-end infinite;
  max-width: 100%;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
}


.step-card {
	max-width: 250px;
	max-height: 350px;
	margin: auto;
	padding: 30px 20px;
	background-color: #181A1C;
	border-radius: 20px;
	border: 1px solid #ffffff;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-align: center;
}

.step-icon {
	font-size: 48px;
	color: #ffffff;
	margin-bottom: 20px;
}

.step-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.step-description {
	font-size: 15px;
	line-height: 1.5;
	color: #cccccc;
}

.animated-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #000000; /* финальный цвет */
  background-color: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  z-index: 0;
}

/* Текст как маска */
.animated-button .button-text {
  position: relative;
  z-index: 2;
  color: #fff;
  mix-blend-mode: difference; /* ключевая магия */
  transition: color 0.3s;
}

/* Анимированная заливка */
.animated-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  z-index: 1;
  animation: fillProgress 11s ease-in-out forwards;
}

/* Ключевые кадры заливки */
@keyframes fillProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}


.service-checklist {
	margin-bottom: 1.5rem;
}

.service-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #181A1C;
	border: 1px solid #5bd6e9;
	color: #ffffff;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 15px;
	flex: 1 1 calc(50% - 10px);
	min-width: 240px;
	cursor: pointer;
	user-select: none;
	transition: background-color 0.3s, border-color 0.3s;
}

/* Прячем реальный checkbox */
.service-item input[type="checkbox"] {
	display: none;
}

/* При выборе — меняем цвет иконки и текста */
.service-item input[type="checkbox"]:checked + i {
	color: #5bd6e9;
}

.service-item input[type="checkbox"]:checked ~ span {
	color: #5bd6e9;
}

/* Контейнер и подпись */
#budget {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #5bd6e9 0%, #5bd6e9 0%, #444 0%, #444 100%);
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Для Firefox */
#budget::-moz-range-track {
  height: 8px;
  border-radius: 5px;
  background: #444;
}

/* Для Chrome, Safari, Edge */
#budget::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 5px;
  background: #444;
}

/* Ползунок */
#budget::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #5bd6e9;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -8px; /* Чтобы центрировать */
  box-shadow: 0 0 6px rgba(91, 214, 233, 0.7);
  transition: background 0.3s ease;
}

#budget::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #5bd6e9;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(91, 214, 233, 0.7);
  border: none;
}

/* Обновляем заполнение трека с помощью JS */

.work-area-section {
  background-color: #121212;
  padding: 40px 30px;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.work-area-items {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.work-item {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 25px 35px;
  width: 200px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideFadeIn 0.8s forwards;
  animation-delay: 0.4s;
  color: #fff;
  cursor: default;
  transition: border-color 0.3s ease;
}

.work-item:nth-child(2) {
  animation-delay: 0.6s;
  transform: translateX(30px);
}

.work-item:hover {
  border-color: #fff;
}

.icon {
  font-size: 48px;
  margin-bottom: 18px;
  user-select: none;
}

.work-item p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  user-select: none;
}

/* Вторая колонка - варианты сотрудничества */

.work-options-section {
  background-color: #121212;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.work-options-section .title-heading {
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  user-select: none;
}

.work-options-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.option-item {
  background-color: #1e1e1e;
  border-radius: 14px;
  padding: 20px 25px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
  transition: background-color 0.3s ease;
}

.option-item:nth-child(2) {
  animation-delay: 0.7s;
}

.option-item:hover {
  background-color: #272727;
}

.option-icon {
  font-size: 36px;
  margin-bottom: 12px;
  user-select: none;
}

.option-item h5 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.option-item p {
  font-size: 15px;
  line-height: 1.4;
  color: #ccc;
  user-select: none;
}

/* Анимации */

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность */

@media (max-width: 767px) {
  .work-area-items {
    flex-direction: column;
    gap: 25px;
  }
  .work-item {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    transform: translateX(0) !important;
    animation-delay: 0.4s !important;
  }

  .work-options-items {
    gap: 20px;
  }
}

/* Скрываем стандартное поле */
#file-upload {
  display: none;
}

/* Стилизованный label как кнопка */
.custom-file-upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #181A1C;
  color: white;
  border: 1px solid white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #2c2f33;
}

.custom-file-upload i {
  font-size: 18px;
}
