@charset "UTF-8";
.development-process-section {
  width: 100%;
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media (min-width: 1100px) {
  .development-process-section {
    padding: 0 80px;
    gap: 40px;
  }
}
@media (min-width: 1400px) {
  .development-process-section {
    padding: 0 50px;
    gap: 0px;
  }
}
@media (min-width: 1630px) {
  .development-process-section {
    padding: 0;
    max-width: 1530px;
  }
}
.development-process-section__category {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #5067F4;
}
@media (min-width: 850px) {
  .development-process-section__category {
    font-size: 16px;
  }
}
.development-process-section__heading {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  margin: 0;
  color: #101018;
}
@media (min-width: 850px) {
  .development-process-section__heading {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    max-width: 750px;
  }
}

.development-process {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 0px auto;
  /* Tablet Styles */
  /* Desktop Styles */
  /* Стили активного блока */
  /* Кнопки */
}
@media (min-width: 850px) {
  .development-process {
    margin: 0px auto 80px;
  }
}
.development-process__content {
  order: 2;
}
.development-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 50px);
  align-items: center;
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
}
@media (min-width: 850px) {
  .development-process__grid {
    margin: 0px auto;
  }
}
@media (min-width: 1919px) {
  .development-process__grid {
    grid-template-rows: repeat(6, 90px);
  }
}
.development-process__grid .development-process__svg:nth-of-type(1) {
  z-index: 13;
  position: relative;
}
.development-process__grid .development-process__svg:nth-of-type(2) {
  z-index: 12;
  position: relative;
}
.development-process__grid .development-process__svg:nth-of-type(3) {
  z-index: 11;
  position: relative;
}
.development-process__grid .development-process__svg:nth-of-type(4) {
  z-index: 10;
  position: relative;
}
.development-process__grid .development-process__svg:nth-of-type(5) {
  z-index: 9;
  position: relative;
}
.development-process__grid .development-process__svg:nth-of-type(6) {
  z-index: 8;
  position: relative;
}
.development-process__empty {
  display: none;
}
.development-process__btn--desktop {
  display: none;
}
.development-process__mobile-buttons {
  display: block;
}
@media (min-width: 850px) {
  .development-process {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }
  .development-process__content {
    min-height: 424px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: initial;
  }
  .development-process__grid {
    grid-template-columns: 1fr 205px 1fr;
    column-gap: 40px;
  }
}
@media (min-width: 850px) and (min-width: 1919px) {
  .development-process__grid { /* Увеличиваем SVG только на десктопе */
    grid-template-columns: 1fr 322px 1fr;
  }
}
@media (min-width: 850px) {
  .development-process__empty {
    display: block;
  }
  .development-process__btn--desktop {
    display: block;
    width: 180px;
    position: relative;
  }
  .development-process__btn--desktop::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    border-top: 2px dotted #bbb;
    display: block;
  }
  .development-process__grid > .development-process__btn--desktop:nth-child(6n+3) {
    justify-self: end;
    text-align: left;
    width: fit-content;
  }
  .development-process__grid > .development-process__btn--desktop:nth-child(6n+4) {
    justify-self: start;
    text-align: left;
    width: fit-content;
  }
  .development-process__grid > .development-process__btn--desktop:nth-child(6n+3)::before {
    left: -150px;
  }
  .development-process__grid > .development-process__btn--desktop:nth-child(6n+4)::before {
    right: -150px;
  }
}
@media (min-width: 1100px) {
  .development-process__mobile-buttons {
    display: none;
  }
}
@media (min-width: 1230px) {
  .development-process__content {
    min-height: 336px;
  }
}
.development-process__svg {
  clip-path: polygon(50% 0%, 100% 35%, 100% 65%, 50% 100%, 0% 65%, 0% 35%);
  width: 161px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .development-process__svg { /* Увеличиваем SVG только на десктопе */
    width: 205px;
    height: auto;
  }
}
@media (min-width: 1919px) {
  .development-process__svg { /* Увеличиваем SVG только на десктопе */
    width: 322px;
  }
}
.development-process__svg--active .color-1 {
  fill: #B7C5FF;
}
.development-process__svg--active .color-2 {
  fill: #839AFE;
}
.development-process__svg--active .color-3 {
  fill: #436AFD;
}
.development-process__svg:not(.development-process__svg--active) .color-1 {
  fill: #EFF0FF;
}
.development-process__svg:not(.development-process__svg--active) .color-2 {
  fill: #DFE3F9;
}
.development-process__svg:not(.development-process__svg--active) .color-3 {
  fill: #C4C9EE;
}
.development-process__btn {
  background: #f1f1f1;
  border: none;
  padding: 12px 11px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}
@media (min-width: 1919px) {
  .development-process__btn {
    font-size: 24px;
  }
}
.development-process__btn--active {
  background: #5067F4;
  color: white;
}
.development-process__mobile-buttons {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}
.development-process__mobile-buttons .splide__track {
  overflow: visible;
}
.development-process__mobile-buttons .splide__list {
  display: flex;
  gap: 10px;
}
.development-process__mobile-buttons .splide__slide {
  display: flex;
  justify-content: center;
}
.development-process__mobile-buttons .development-process__btn--mobile {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.development-process__mobile-buttons .development-process__btn--mobile--active {
  background: #007bff;
  color: white;
}
@media (min-width: 850px) {
  .development-process .development-process__mobile-buttons {
    display: none;
  }
}

.development-process__step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}
@media (min-width: 850px) {
  .development-process__step {
    min-height: 435px;
  }
}
@media (min-width: 980px) {
  .development-process__step {
    min-height: 345px;
  }
}
@media (min-width: 1200px) {
  .development-process__step {
    min-height: 315px;
  }
}
@media (min-width: 1600px) {
  .development-process__step {
    min-height: 336px;
  }
}
.development-process__step--active {
  position: relative;
  visibility: visible;
  opacity: 1;
  display: block;
}
.development-process__step .development-process__number {
  font-size: 32px;
  font-weight: 700;
  color: #DEDCF3;
  display: block;
  margin-bottom: 5px;
}
@media (min-width: 850px) {
  .development-process__step .development-process__number {
    font-size: 48px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1919px) {
  .development-process__step .development-process__number {
    font-size: 64px;
    margin-bottom: 20px;
  }
}
.development-process__step .development-process__title {
  font-size: 20px;
  font-weight: 600;
  color: #101018;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (min-width: 850px) {
  .development-process__step .development-process__title {
    font-size: 26px;
  }
}
@media (min-width: 1919px) {
  .development-process__step .development-process__title {
    font-size: 32px;
  }
}
.development-process__step .development-process__description {
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  max-width: 600px;
  line-height: 1.6;
}
@media (min-width: 850px) {
  .development-process__step .development-process__description {
    font-size: 18px;
    max-width: 700px;
  }
}
@media (min-width: 1919px) {
  .development-process__step .development-process__description {
    font-size: 20px;
    max-width: 800px;
  }
}

.development-process__button {
  display: inline-block;
  background: #6579F4;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  margin-top: 25px;
  width: 100%;
  text-align: center;
}
.development-process__button:hover {
  background: #2254CD;
}
.development-process__button:focus {
  outline: 2px solid #2254CD;
}
@media (min-width: 850px) {
  .development-process__button {
    padding: 14px 24px;
    width: fit-content;
    margin-top: auto;
    align-self: start;
  }
}
