@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-blue: #4a00e0;
  --c-purple: #8d2de2de;
  --color-text-main: #111827;
  --color-text-secondary: #6B7280;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-accent: 0 6px 16px rgba(59, 130, 246, 0.3);
  --container-width: 1260px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: #f5f5f5;
  color: var(--color-text-main);
}

img, picture, video, canvas, svg {
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input {
  outline: none;
  appearance: none;
  box-shadow: none;
  border: 1px solid #e8e8e8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
  min-width: 360px;
}

svg, img {
  transition: 0.2s;
  max-width: 100%;
}

._fixed {
  overflow: hidden;
}

.btn {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  color: ghostwhite;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.btn span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 16px;
}

.btn::before,
.btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.btn::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn:hover::before {
  transform: translate3d(100%, 0, 0);
}

.white-text {
  color: #fff !important;
}

.bold-text {
  font-weight: 700;
}

.blue-text {
  color: #68AABD;
}

.green-text {
  color: #6aa67a;
}

.section-title-wrap {
  position: relative;
  margin-bottom: 0px;
}

.section-title-wrap.isArrs {
  display: flex;
  justify-content: space-between;
}

.title__arrs, .mob__arrs {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}
.title__arrs .title__arr, .mob__arrs .title__arr {
  background: var(--c-blue);
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  flex-shrink: 0;
}
.title__arrs .title__arr svg, .mob__arrs .title__arr svg {
  position: relative;
  transition: 0.2s;
}
.title__arrs .arr-l, .mob__arrs .arr-l {
  display: flex;
  align-items: center;
  transform: rotate(-180deg);
}
.title__arrs .arr-l:hover, .mob__arrs .arr-l:hover {
  background: #260073;
}
.title__arrs .arr-r, .mob__arrs .arr-r {
  display: flex;
  align-items: center;
}
.title__arrs .arr-r:hover, .mob__arrs .arr-r:hover {
  background: #260073;
}

.mob__arrs {
  padding-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob__arrs .mob__pag.swiper-pagination-bullets {
  transform: none;
}
.mob__arrs .mob__pag.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 0;
  margin: 0 6px !important;
  display: inline-block !important;
}
.mob__arrs .mob__pag.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-blue);
}

.section-title {
  font-family: "Montserrat";
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 5;
}

.header__decor_1 {
  position: absolute;
  width: 80%;
  min-height: 70px;
  height: 100%;
  background: var(--c-blue);
  z-index: 0;
  top: -10px;
  left: -50px;
  transform: skewX(30deg);
}

.bg-cube-img.cube-1 {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-35deg);
  opacity: 0.1;
}

.bg-cube-img.cube-2 {
  position: absolute;
  top: -250px;
  right: 140px;
  transform: rotate(-35deg);
  opacity: 0.1;
}

.bg-cube-img.cube-3 {
  position: absolute;
  top: -400px;
  right: -384px;
  transform: rotate(-282deg);
  opacity: 0.1;
}

.bg-cube-img.cube-4 {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: rotate(-225deg);
  opacity: 0.1;
}

@media (max-width: 767px) {
  .btn {
    font-size: 12px;
  }
}
@font-face {
  font-family: "Druk Wide Cyr Medium";
  src: url("../assets/fonts/drukwidecyr-medium.otf") format("opentype");
  font-weight: 500; /* Medium обычно соответствует 500 */
  font-style: normal;
  font-display: swap; /* Оптимизация загрузки */
}
@font-face {
  font-family: "Druk Wide Cyr";
  src: url("https://db.onlinewebfonts.com/t/e7fa3e0f70e1466b2f73ee1ac39c8c30.eot");
  src: url("https://db.onlinewebfonts.com/t/e7fa3e0f70e1466b2f73ee1ac39c8c30.eot?#iefix") format("embedded-opentype"), url("https://db.onlinewebfonts.com/t/e7fa3e0f70e1466b2f73ee1ac39c8c30.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/e7fa3e0f70e1466b2f73ee1ac39c8c30.woff") format("woff"), url("https://db.onlinewebfonts.com/t/e7fa3e0f70e1466b2f73ee1ac39c8c30.ttf") format("truetype"), url("https://db.onlinewebfonts.com/t/e7fa3e0f70e1466b2f73ee1ac39c8c30.svg#Druk Wide Cyr") format("svg");
}
.header {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  transition: 0.2s;
  z-index: 20;
  background: #fff;
}
.header .header__nav ul {
  list-style: none;
  margin: 0;
}
.header .header__nav ul li {
  cursor: pointer;
}
.header.header__fixed {
  box-shadow: var(--shadow-card);
  height: 70px;
  z-index: 100;
  top: 0;
}
.header.header__fixed .header__logo img {
  height: 50px;
}
.header.header__fixed .header__nav ul li {
  cursor: pointer;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .header__logo {
  display: flex;
  align-items: center;
}
.header .header__logo img {
  height: 80px;
  width: 150px;
  object-fit: contain;
}
.header .header__nav {
  font-weight: 600;
}
.header .header__nav ul {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.header .header__nav ul li {
  text-transform: uppercase;
  position: relative;
}
.header .header__nav ul li a {
  box-shadow: inset 0 0 0 0 var(--c-purple);
  color: var(--color-text-main);
  transition: color 0.2s ease-in-out, box-shadow 0.5s ease-in-out;
  padding: 10px 10px;
}
.header .header__nav ul li a:hover {
  color: #fff;
  box-shadow: inset 300px 0 0 0 var(--c-blue);
}
.header .header__nav ul li a.dropdown-link::after {
  content: url(../images/main/header/arr-dropdown.svg);
  position: absolute;
  right: -15px;
  top: -1px;
  height: 100%;
  width: 10px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.header .header__nav ul li a.dropdown-link:hover::after {
  top: 2px;
}
.header .dropdown-link:hover .dropdown-wrap {
  opacity: 1;
  visibility: visible;
}
.header .dropdown-wrap {
  opacity: 0;
  transition: 0.2s;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 10px);
  z-index: 0;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px 4px rgba(34, 60, 80, 0.3);
}
.header .dropdown-wrap a[data-scroll] {
  padding: 10px 15px;
}

main {
  padding-top: 100px;
}
main.header__fixed {
  padding-top: 70px;
}

.hero {
  height: calc(100vh - 100px);
}

.hero__slider {
  height: 100%;
}

.hero__slide {
  position: relative;
}

.hero__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  background: #a69eff;
  color: #fff;
  padding: 30px;
  position: relative;
}
.hero__content .hero__decor_1 {
  width: 90%;
  height: 80%;
  background: hsl(239, 100%, 62%);
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 0;
  transform: skewX(-12deg);
}

.hero__title {
  padding-bottom: 30px;
  font-size: 32px;
  font-family: "Druk Wide Cyr Medium";
  position: relative;
  z-index: 5;
  text-transform: uppercase;
  padding-left: 15px;
}

.hero__text {
  padding-bottom: 20px;
  position: relative;
  z-index: 5;
  max-width: 400px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img {
  position: relative;
  z-index: 10;
}
.hero__buttons {
  display: flex;
  gap: 15px;
}

.price-label {
  position: relative;
  z-index: 10;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #fff;
  border: 1px solid var(--color-text-main);
  color: var(--color-text-main);
  padding: 0.8em 1.2em 0.8em 1.05em;
}

.image-advanced {
  position: relative;
  border-radius: 20px;
  width: 300px;
  transform: rotateY(15deg) rotateX(10deg);
  transform-style: preserve-3d;
}

.image-advanced img {
  display: block;
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Создаем эффект толщины */
.image-advanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: #3498db;
  transform: translateZ(-20px); /* "Толщина" элемента */
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services {
  margin-top: 100px;
  padding-bottom: 100px;
}

#services-heading {
  color: #fff;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.services__item {
  padding: 50px;
  background: var(--c-purple);
  position: relative;
  overflow: hidden;
}
.services__item h3 {
  font-family: "Druk Wide Cyr Medium";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}
.services__item .service__toggle {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--color-text-main);
  right: 20px;
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.services__item .sevices__main-header {
  position: relative;
  z-index: 5;
  max-width: 95%;
}
.services__item .serv__decor {
  position: absolute;
  height: 5px;
  width: 50%;
  background: #4a00e0;
  left: 0;
  top: 50px;
  top: 120%;
  transform: skewX(-40deg);
}
.services__item .service__show-more {
  max-width: 250px;
  margin: 0 auto;
  z-index: 20;
  position: relative;
  margin-top: 20px;
  height: 45px;
}
.services__item .service__content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  position: relative;
  z-index: 5;
}
.services__item .service__content {
  overflow: hidden;
}
.services__item.opened .service__toggle svg {
  transform: rotate(-180deg);
}
.services__item.opened .service__content-wrap {
  grid-template-rows: 1fr;
  transition: 0.5s;
}

.service__row {
  display: flex;
  gap: 50px;
}

.service__text {
  background: #fff;
  padding: 20px;
  margin-bottom: 30px;
  max-width: 80%;
  position: relative;
  z-index: 5;
}

.service__text-inner {
  border-left: var(--c-blue) solid 5px;
  padding-left: 20px;
  font-size: 24px;
}

.service__types {
  flex: 1;
}

.service__list .service__item {
  margin-bottom: 30px;
}
.service__list .service__item-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px;
  position: relative;
}
.service__list .service__item-title span {
  position: relative;
  z-index: 10;
}
.service__list .service__item-title:before {
  content: "";
  width: 80%;
  height: 50px;
  background: var(--c-blue);
  position: absolute;
  z-index: 0;
  transform: skewX(-20deg);
  left: -10px;
  top: 5px;
}
.service__list .service__item-text {
  padding: 25px 20px 15px;
  background: #fff;
  font-size: 18px;
}
.service__list .service__item-text span {
  max-width: 400px;
  display: block;
}

.service__techs {
  flex: 1;
}

.services__tabs {
  display: flex;
  gap: 20px;
  padding: 50px 0;
}

.services__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  flex: 1;
}

.service__prices {
  padding: 25px;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  border: 2px solid #fff;
  color: #fff;
}
.service__prices .service__prices-title {
  font-size: 22px;
  padding-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.service__prices .cur-price {
  font-weight: 600;
  font-size: 26px;
  color: ghostwhite;
  position: relative;
}
.service__prices .cur-price:after {
  position: absolute;
  content: "*";
  right: -15px;
  top: -10px;
}
.service__prices .service__prices-price {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  border: #fff solid 1px;
  color: ghostwhite;
  background: linear-gradient(to right, #242424, #4a00e0);
  padding: 0.8em 1.2em 0.8em 1.05em;
  display: flex;
  gap: 10px;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.service__prices .old-price {
  text-decoration: line-through;
}
.service__prices .footnote {
  font-size: 10px;
  color: #eee;
  display: block;
  padding-top: 10px;
}

.service__cta {
  background: #fff;
  box-shadow: 0px 0px 24px 0px rgba(34, 60, 80, 0.2);
  max-width: 800px;
  margin: 0 auto 0;
  background-image: url("../images/bg/bg3.jpeg");
  background-size: cover;
  position: relative;
}
.service__cta:after {
  position: absolute;
  content: "";
  background: #fff;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
}
.service__cta .service__cta-content {
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 20px;
  margin-top: 30px;
}
.service__cta p {
  font-size: 24px;
  text-align: center;
  max-width: 800px;
  margin-bottom: 10px;
  font-weight: 600;
}
.service__cta .btn {
  margin-top: 20px;
}

.service__techs {
  padding: 25px;
  background: #fff;
}
.service__techs .service__steps h4 {
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
}
.service__techs .service__steps ol li {
  list-style: decimal;
  padding-bottom: 25px;
  margin-left: 30px;
  position: relative;
}
.service__techs .service__steps ul li {
  list-style: disc;
  padding-bottom: 25px;
  margin-left: 30px;
  position: relative;
}
.service__techs .service__steps li::marker {
  font-size: 18px;
  color: #000000;
}
.service__techs .service__steps .service__steps-title {
  font-size: 22px;
  padding-bottom: 15px;
}
.service__techs .service__steps .service__step-title {
  display: block;
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 22px;
  position: relative;
  width: fit-content;
  z-index: 1;
}
.service__techs .service__steps .service__step-title::after {
  position: absolute;
  left: -14px;
  bottom: 0px;
  content: "";
  height: 8px;
  width: 150px;
  background: rgba(155, 71, 229, 0.6980392157);
  transform: skewX(69deg);
  z-index: 0;
}
.service__techs .service__steps .service__step-text {
  display: block;
  padding-top: 10px;
}

.cases {
  padding-bottom: 100px;
}

.cases__content {
  padding-top: 50px;
}

.case__slide {
  position: relative;
  overflow: hidden;
}
.case__slide.over .case__descr {
  left: 0;
}
.case__slide.over .case__info {
  right: 0;
}

.case__labels {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.case__label {
  padding: 5px 10px;
  background: var(--c-blue);
  color: #fff;
}

.case__descr {
  position: absolute;
  bottom: 0;
  left: -100%;
  height: 100%;
  z-index: 10;
  padding: 20px;
  background: rgb(255, 255, 255);
  width: 350px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.case__descr-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 15px;
  color: #4d4446;
}
.case__descr ul li {
  position: relative;
  color: #231f20;
  font-size: 14px;
  padding-left: 15px;
  margin-bottom: 10px;
}
.case__descr ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--c-blue);
}

.case__info {
  display: none !important;
  position: absolute;
  top: 50px;
  right: -100%;
  min-height: 100px;
  z-index: 10;
  padding: 15px;
  background: rgb(255, 255, 255);
  width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case__info .case__term-title {
  text-transform: uppercase;
  font-size: 16px;
}
.case__info .case__term-text {
  text-transform: uppercase;
  font-size: 12px;
}
.case__info .case__budget-title {
  text-transform: uppercase;
  font-size: 16px;
}
.case__info .case__budget-text {
  text-transform: uppercase;
  font-size: 12px;
}

.case__inner-slider {
  height: 400px;
}

.case__inner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case__slide .swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--c-blue);
  color: #fff;
}
.case__slide .swiper-button-next:after {
  font-size: 18px;
}

.case__slide .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--c-blue);
  color: #fff;
}
.case__slide .swiper-button-prev:after {
  font-size: 18px;
}

.whywe {
  padding-bottom: 50px;
}

.whywe__text {
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 30px;
  background: var(--c-purple);
}
.whywe__text .whywe__text-inner {
  padding: 20px 20px 20px 40px;
  color: var(--color-text-main);
  line-height: 120%;
  font-size: 24px;
  font-weight: 400;
  background: #fff;
  position: relative;
}
.whywe__text .whywe__text-inner:before {
  position: absolute;
  content: "";
  left: 20px;
  z-index: 5;
  height: 80%;
  width: 5px;
  background: var(--c-blue);
}

.whywe__main {
  padding: 30px 0;
}

.whywe__title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background: var(--c-blue);
  color: #fff;
  padding: 10px;
  margin-bottom: 30px;
}

.whywe__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.whywe__item {
  padding: 20px 10px;
  position: relative;
}
.whywe__item .whywe__item-title {
  font-size: 28px;
  padding-bottom: 10px;
}
.whywe__item .whywe__item-text {
  font-size: 18px;
}
.whywe__item .whywe__item-num {
  background: var(--c-blue);
  border-radius: 50%;
  font-size: 26px;
  color: #fff;
  padding: 5px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.3s;
}
.whywe__item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 5px;
  content: "";
  background: var(--c-purple);
  transform: skewX(60deg);
  transition: 0.5s ease-in-out;
}
.whywe__item:hover::after {
  width: 90%;
}
.whywe__item:hover .whywe__item-num {
  background: var(--c-purple);
}

.advantages__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 100px;
}

.advantages__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.advantages__num {
  padding-bottom: 15px;
  font-size: 24px;
  text-transform: uppercase;
}
.advantages__num span {
  color: var(--c-purple);
  font-weight: 600;
  font-size: 52px;
}

.advantages__text {
  font-size: 20px;
  padding: 15px;
  background: var(--c-blue);
  color: #fff;
  font-weight: 600;
  height: calc(100% - 60px);
  text-transform: uppercase;
  flex: 1;
}

.reviews__wrapper {
  display: flex;
  margin: 50px 0 50px;
  gap: 50px;
}

.reviews__left {
  flex: 1;
}

.reviews__title {
  font-size: 34px;
  line-height: 110%;
  padding-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews__title-decor {
  position: relative;
  left: -20px;
  height: 20px;
  width: 250px;
  transform: skewX(-30deg);
  background: var(--c-blue);
  opacity: 0.7;
}

.reviews__text {
  font-size: 26px;
  color: #ffffff;
  background: var(--c-blue);
  padding: 30px;
}

.reviews__right {
  flex: 1;
}

.reviews__slider {
  height: 700px;
}

.review__slide {
  padding: 15px;
  border: 2px var(--c-blue) solid;
  background: #ffffff;
}

.review__meta {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.review__author {
  margin-bottom: 5px;
  margin-left: 15px;
  width: fit-content;
  position: relative;
}
.review__author::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-blue);
}

.review__position {
  font-size: 12px;
  padding-bottom: 5px;
  font-weight: 600;
}

.review__project {
  font-size: 12px;
  padding: 5px 10px;
  background: var(--c-purple);
  width: fit-content;
  color: #ffffff;
}

.review__text {
  font-size: 12px;
  line-height: 120%;
  border-left: 5px var(--c-blue) solid;
  padding-left: 10px;
}

.callback__wrapper {
  padding-top: 50px;
  display: flex;
  gap: 50px;
}

.callback__left {
  flex: 1;
}

.callback__title {
  max-width: 500px;
  font-size: 36px;
}

.callback__contacts {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 30px;
}

.callback__contact {
  font-family: inherit;
  padding: 10px 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  background: var(--c-blue);
  color: ghostwhite;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  /* Animated text glow effect */
}
.callback__contact span {
  color: #fff;
}
.callback__contact:hover {
  background: var(--color-text-main);
}
.callback__contact:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.6s ease-out;
  z-index: -1;
}
@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
.callback__contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}
.callback__contact:hover::after {
  left: 150%;
  transition: all 0.5s ease;
}

.callback__right {
  flex: 1;
}

.callback__form {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  border: #fff solid 1px;
  color: ghostwhite;
  background: linear-gradient(to left, #8000ca 0%, #4a00e0 50%);
  padding: 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}

.callback__form-title {
  margin-bottom: 30px;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 110%;
}

.form-group {
  width: 100%;
  min-height: 50px;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  border: 2px solid transparent;
}

.form-group input:active, .form-group input:focus {
  border: 2px solid #000286;
  box-shadow: 0px 0px 8px 2px rgba(255, 251, 0, 0.5);
}

.callback__form-submit {
  width: 100%;
}

.faq {
  padding-top: 50px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  border: 1px solid #000;
  padding: 18px 25px;
  cursor: pointer;
}
.faq__item.opened .faq__ans {
  grid-template-rows: 1fr;
}
.faq__item.opened .plus {
  opacity: 0;
}
.faq__item.opened .minus {
  opacity: 1;
  color: var(--c-blue);
}

.faq__qu {
  font-size: 26px;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}
.faq__qu:hover .plus {
  transform: rotate(180deg);
}
.faq__qu svg {
  color: var(--c-purple);
  transition: 0.3s;
  position: absolute;
  z-index: 3;
  right: 20px;
}
.faq__qu .plus {
  opacity: 1;
}
.faq__qu .minus {
  opacity: 0;
}

.faq__ans {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.2s;
}

.faq__ans-inner {
  overflow: hidden;
  margin-top: 15px;
  padding-left: 15px;
  font-size: 22px;
  line-height: 140%;
  border-left: 5px var(--c-blue) solid;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  position: relative;
  max-width: 560px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
  padding: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-header h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  padding-bottom: 8px;
  color: rgb(26, 26, 26);
}

.modal-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: rgb(63, 63, 63);
}

.close-modal {
  background: #fff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: rgb(63, 63, 63);
  line-height: 1;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  position: absolute;
  right: -35px;
  top: -35px;
  font-family: Montserrat, sans-serif;
}

.close-modal:hover {
  color: #e60000;
}

.form-group {
  margin-bottom: 8px;
}

.form-group input[type=text],
.form-group input[type=tel],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 16px;
  height: 56px;
  border: 1px solid rgb(239, 241, 245);
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
  background: rgb(239, 241, 245);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #e6a500;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.modal__form-bottom {
  padding-top: 0;
}

.modal__policy {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgb(255, 255, 255);
}
.modal__policy a {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .btn {
    min-height: 40px;
  }
  .hero__title {
    font-size: 24px;
    padding-bottom: 15px;
  }
  .hero__img .hero__animation {
    max-width: 400px;
  }
  .header .header__nav ul li a {
    font-size: 14px;
  }
  .callback__contacts {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .hero__text {
    font-size: 14px;
  }
  .btn span {
    font-size: 12px;
  }
  .header__nav {
    display: none;
  }
  .hero__buttons .price-label {
    font-size: 12px;
  }
  .section-title {
    font-size: 32px;
  }
  .header__decor_1 {
    height: 120%;
  }
  .services__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .services__tabs {
    padding: 30px 0;
  }
  .services__list {
    gap: 50px;
  }
  .services__item h3 {
    font-size: 32px;
  }
  .service__text-inner {
    font-size: 20px;
  }
  .service__techs .service__steps .service__step-title {
    font-size: 18px;
  }
  .service__list .service__item-title {
    font-size: 20px;
  }
  .service__list .service__item-title::before {
    width: 90%;
    height: 55px;
  }
  .whywe__item .whywe__item-title {
    font-size: 22px;
  }
  .whywe__item .whywe__item-text {
    font-size: 16px;
  }
  .reviews__title-item {
    font-size: 24px;
    line-height: 105%;
  }
  .reviews__text {
    font-size: 20px;
  }
  .callback__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .btn {
    min-width: 160px;
  }
  .header__decor_1 {
    width: 100%;
  }
  .hero__inner {
    justify-content: center;
  }
  .hero__content {
    min-width: 95%;
  }
  .hero__img {
    display: none;
  }
  .hero__title {
    font-size: 20px;
  }
  .hero__buttons .price-label {
    font-size: 10px;
  }
  .service__text {
    max-width: 100%;
  }
  .service__row {
    flex-direction: column;
  }
  .service__prices .cur-price {
    font-size: 18px;
  }
  .services__tab {
    height: 45px;
  }
  .service__cta .service__cta-content {
    text-align: center;
  }
  .services__item {
    padding: 25px;
  }
  .services__item h3 {
    font-size: 24px;
  }
  .service__text {
    margin-bottom: 10px;
  }
  .service__text-inner {
    font-size: 18px;
  }
  .service__list .service__item {
    margin-bottom: 20px;
  }
  .service__techs {
    padding: 15px;
  }
  .whywe__item .whywe__item-num {
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  .whywe__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__text {
    font-size: 16px;
  }
  .advantages__num span {
    font-size: 30px;
  }
  .advantages__num {
    font-size: 20px;
  }
  .whywe__list {
    gap: 15px;
  }
  .whywe__item {
    padding: 10px 5px;
  }
  .whywe__title {
    font-size: 24px;
  }
  .whywe__text {
    padding: 20px;
  }
  .whywe__text .whywe__text-inner {
    font-size: 20px;
  }
  .reviews__wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .reviews__title {
    padding-bottom: 25px;
    gap: 10px;
  }
  .reviews__slider {
    height: 250px;
  }
  .review__meta {
    gap: 20px;
  }
  .reviews__title-item {
    font-size: 20px;
  }
  .reviews__text {
    font-size: 16px;
    padding: 20px;
  }
  .callback__wrapper {
    flex-direction: column;
  }
  .faq__item {
    padding: 12px 15px;
  }
  .faq__qu {
    font-size: 18px;
  }
  .faq__qu svg {
    right: 10px;
  }
  .faq__ans-inner {
    font-size: 16px;
    line-height: 120%;
  }
  .callback__contact {
    font-size: 14px;
  }
  .callback__wrapper {
    gap: 20px;
  }
  .title__arrs {
    display: none;
  }
  .callback__form {
    padding: 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .header__decor_1 {
    min-height: 55px;
  }
  .callback__form {
    gap: 5px;
  }
  .callback__form-title {
    font-size: 18px;
    max-width: 90%;
    margin-bottom: 15px;
  }
  .case__inner-slider {
    height: 250px;
  }
  .case__descr {
    bottom: -250px;
    left: 0;
    width: 100%;
    box-shadow: unset;
    border-top: 1px #9b9b9b solid;
  }
  .case__descr ul li {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .swiper-slide.case__slide {
    height: 500px;
  }
  .services__item h3 {
    font-size: 20px;
  }
  .services__list {
    gap: 20px;
  }
  .service__prices {
    padding: 15px;
  }
  .service__techs .service__steps h4 {
    font-size: 18px;
  }
  .service__techs .service__steps .service__steps-title {
    font-size: 18px;
  }
  .service__techs .service__steps .service__step-title {
    font-size: 16px;
  }
  .service__techs .service__steps .service__step-text {
    font-size: 14px;
  }
  .header__btn.btn span {
    font-size: 12px;
    padding: 10px 5px;
  }
  .close-modal {
    right: 5px;
    top: -40px;
  }
  .form-group {
    min-height: 45px;
  }
  .form-group input[type=text], .form-group input[type=tel], .form-group textarea, .form-group select {
    height: 50px;
  }
  .modal__policy {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .header .header__logo img {
    height: 35px;
    width: auto;
  }
  .burger-btn {
    margin-left: 30px;
  }
  .services__tabs {
    grid-template-columns: repeat(1, 1fr);
  }
  .service__text-inner {
    font-size: 16px;
  }
  .btn span {
    font-size: 14px;
  }
  .services__item h3 {
    font-size: 18px;
  }
  .advantages__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .whywe__text .whywe__text-inner {
    font-size: 16px;
  }
  .reviews__slider {
    height: 350px;
  }
  .footer__main {
    flex-direction: column;
  }
  .footer__cols {
    flex-direction: column;
  }
}
footer {
  width: 100%;
  background: #000;
  color: #fff;
  margin-top: 100px;
  padding: 50px 0 20px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul {
  margin: 0;
  list-style: none;
}
.footer__col a {
  color: #fff;
}
.footer__col a:hover {
  color: #a9a8ff;
}
/* Кнопка бургера */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn span {
  width: 100%;
  height: 2px;
  background: #242424;
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 800;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__inner {
  padding: 80px 24px 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Навигация */
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid #eee;
}

.mobile-nav__link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #242424;
  text-decoration: none;
  flex: 1;
}

/* Выпадающий список */
.mobile-dropdown__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 16px 16px;
  transition: transform 0.3s ease;
}

.mobile-dropdown__btn.active {
  transform: rotate(180deg);
}

.mobile-dropdown__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 0;
}

.mobile-dropdown__menu.open {
  max-height: 300px;
  margin-bottom: 12px;
}

.mobile-dropdown__menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-dropdown__menu li a:hover {
  color: #667eea;
}

/* Контакты в мобильном меню */
.mobile-menu__contacts {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
}

.mobile-menu__phone {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #242424;
  text-decoration: none;
  margin-bottom: 20px;
}

.mobile-menu__btn {
  width: 100%;
}

/* Затемнение фона */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 799;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

.mob__menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 42px;
  color: #242424;
  cursor: pointer;
}

/* Показываем бургер на мобильных */
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}