@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist/Geist-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist/Geist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist/Geist-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist/Geist-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  color: #ffffff;
  font-family: "Roboto Flex";
  overflow-x: hidden;
}

.container {
  max-width: 1720px;
  width: 90vw;
  margin: auto;
}

.main-title {
  font-size: 70px;
  line-height: 110%;
  font-family: Geist, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.section {
  margin-top: 250px;
}

.section-title {
  font-family: Geist, sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-sub {
  color: rgba(255, 255, 255, 0.2);
  font-family: Geist, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}

.section-link {
  height: 50px;
  text-decoration: none;
  display: flex;
  width: fit-content;
}
.section-link__text {
  font-family: "Roboto Flex";
  height: 100%;
  padding: 0px 35px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  border: 1px solid #fff;
  text-transform: uppercase;
}
.section-link__icon {
  height: 100%;
  width: 106px;
  background: #14CF93 url(../../img/link-arrow.svg) no-repeat center;
  border-radius: 25px;
}

.main-text {
  color: #F6F6F6;
  font-family: "Roboto Flex";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.48px;
}

.accent {
  color: #14CF93;
}

@keyframes blob {
  0% {
    transform: scale(1) rotate(0deg) skew(0deg, 0deg);
    border-radius: 50%;
  }
  20% {
    transform: scale(1.1, 0.9) rotate(20deg) skew(5deg, 2deg);
    border-radius: 45% 55% 50% 50%/55% 45% 50% 50%;
  }
  40% {
    transform: scale(0.9, 1.1) rotate(60deg) skew(-5deg, -2deg);
    border-radius: 50% 50% 45% 55%/50% 50% 55% 45%;
  }
  60% {
    transform: scale(1.05, 0.95) rotate(120deg) skew(3deg, 6deg);
    border-radius: 55% 45% 50% 50%/45% 55% 50% 50%;
  }
  80% {
    transform: scale(0.95, 1.05) rotate(200deg) skew(-3deg, -6deg);
    border-radius: 50% 50% 55% 45%/50% 50% 45% 55%;
  }
  100% {
    transform: scale(1) rotate(360deg) skew(0deg, 0deg);
    border-radius: 50%;
  }
}
.header {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 21px 34px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.haeder__logo {
  display: flex;
  align-items: center;  
}
.header__nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.header__nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
.header__buttons {
  justify-self: end;
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__search-button {
  width: 19px;
  height: 19px;
  background: url(../../img/tg.svg) no-repeat center/cover;
  border: none;
  cursor: pointer;
}
.header__burger-button {
  display: none;
  width: 19px;
  height: 16px;
  background: url(../../img/burger-menu.svg) no-repeat center/cover;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .header__nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__burger-button {
    display: block;
  }
  .header__nav, .header__search-button {
    display: none;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 60px;
  margin-top: 180px;
  padding-bottom: 79px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: -5vw;
  width: 40vw;
  height: 50vw;
  z-index: -1;
  background: url(../../img/footer-bg.png) no-repeat center/cover;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1336px;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__content-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__info {
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
}
.footer__link {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 100px;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0!important;
  }
  .footer__content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
}

.promo {
  position: relative;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
  padding: 50px 0px 50px 60px;
  background: url(../../img/promo-bg-grid.png) no-repeat center/cover;
  overflow: hidden;
}
.promo::after {
  position: absolute;
  content: "";
  bottom: 51px;
  right: 53px;
  width: 51px;
  height: 51px;
  background: url(../../img/light-star.svg) no-repeat center/cover;
}
.promo__bg-blur {
  position: absolute;
  left: 350px;
  bottom: -200px;
  width: 700px;
  height: 600px;
  background: #14CF93;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
  animation: blob 18s infinite linear;
  z-index: -1;
  opacity: 0.2;
}
.promo__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.promo__title {
  max-width: 700px;
}
.promo__heading-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
  flex-direction: column;
}
@media (max-width: 1800px) {
  .promo__heading-info {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .promo__heading-info {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .promo__heading-info {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .promo__heading-info {
    max-width: 100%;
  }
}
.promo__heading-texts {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  padding-right: 60px;
}
.promo__heading-text:first-child {
  max-width: 350px;
}
.promo__heading-text:last-child {
  max-width: 394px;
}
.promo__heading-link {
  margin-top: 50px;
}
.promo__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 190px;
}
.promo__top-works {
  margin-top: 5px;
  position: relative;
  width: 417px;
  height: 193px;
  background: url(../../img/top-woks.svg) no-repeat center/cover;
}
.promo__tg-link {
  position: absolute;
  width: 48px;
  height: 48px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.01) url(../../img/tg.svg) no-repeat center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  z-index: 2;
  right: 101px;
  top: 7px;
}
.promo__tg-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../img/tg.svg) no-repeat center;
  z-index: 1;
  filter: blur(6px);
  opacity: 0.7;
}
.promo__statistic-cards {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
  gap: 100px;
}
@media (max-width: 1800px) {
  .promo__statistic-cards {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .promo__statistic-cards {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .promo__statistic-cards {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .promo__statistic-cards {
    max-width: 100%;
  }
}
.promo__statistic-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.promo__statistic-title-wrap {
  font-family: Geist, sans-serif;
  display: flex;
  align-items: flex-start;
}
.promo__statistic-title {
  font-size: 148px;
  font-weight: bold;
  line-height: 100%;
  display: flex;
  align-items: flex-start;
  width: fit-content;
}
.promo__statistic-sub {
  font-size: 58px;
  color: #14CF93;
  font-weight: 800;
  letter-spacing: -5px;
}
.promo__statistic-text {
  max-width: 250px;
}

.advantages__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.advantages__title {
  max-width: 560px;
}
.advantages__heading-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
}
@media (max-width: 1800px) {
  .advantages__heading-info {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .advantages__heading-info {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .advantages__heading-info {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .advantages__heading-info {
    max-width: 100%;
  }
}
.advantages__heading-info-text {
  max-width: 537px;
}
.advantages__cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.advantages__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 35px;
  min-height: 414px;
}
.advantages__card:nth-child(1) .advantages__card-icon {
  background: url(../../img/adv-1.svg) no-repeat center/cover;
}
.advantages__card:nth-child(2) .advantages__card-icon {
  background: url(../../img/adv-2.svg) no-repeat center/cover;
}
.advantages__card:nth-child(3) .advantages__card-icon {
  background: url(../../img/adv-3.svg) no-repeat center/cover;
}
.advantages__card-icon {
  width: 87px;
  height: 87px;
}
.advantages__card-content {
  margin-top: 108px;
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.advantages__card-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}


/* SERVICE SECTION */

.service {
  position: relative; 
  overflow: hidden;         
}

.service__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.service__title-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
}

.service__title {
  position: relative;
}

.service__title::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 50%;
  left: -68px;
  transform: translateY(-50%);
  background: url(../../img/accent-star.svg) no-repeat center/cover;
}

@media (max-width: 1800px) {
  .service__title-wrap {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .service__title-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .service__title-wrap {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .service__title-wrap {
    max-width: 100%;
  }
}

.scroll-section {
  display: flex;
  position: relative;
  gap: 160px;
}

.progress-container {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  height: 50vh;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.progress-segment {
  width: 4px;
  height: calc(25% - 5px);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.progress-segment::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #14cf93;
  transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-segment.active::after {
  height: 100%;
}

.content-container {
  flex-grow: 1;
  max-width: 600px;
  margin-left: 60px;
}

.text-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.text-section.active {
    opacity: 1;
}

.text-item {
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 20px;
    padding: 40px;  
    width: 100%;
}

.text-item h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 24px;
}

.text-item p {
    color: #F6F6F6;
    font-family: "Roboto Flex";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.48px;
}

.video-container {            
    position: sticky;
    top: 10vh;
    height: 80vh;           
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;      
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.video-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 30px;
}

.video-item.active {
    opacity: 1;
}

.mobile-section {
    display: none;
}

.mobile-item {
    margin-top: 40px;
}

.mobile-text {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.mobile-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #14cf93;;
}

.mobile-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-video {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
    }
    
    .scroll-section {
        gap: 40px;
    }
    
    .text-item {
        padding: 30px;
    }
    
    .progress-container {
        left: 20px;
    }
    
    .content-container {
        margin-left: 40px;
    }
}

@media (max-width: 900px) {
    .service {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .scroll-section {
        display: none;
    }
    
    .mobile-section {
        display: block;
    }
    
    .progress-container {
        display: none;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    .service__heading {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .mobile-video {
        height: 100%;
    }
}

.service::before {
  position: absolute;
  content: "";
  right: 0;
  top: -5vh;
  width: 1170px;
  height: 100%;
  z-index: -1;
  background: url(../../img/service-bg.png) repeat center;
}
.service::after {
  position: absolute;
  content: "";
  bottom: 5%;
  right: -40%;
  width: 80vw;
  height: 70%;
  background: #14cf9314;
  filter: blur(70px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.service .video-wrapper {
  position: relative;
  aspect-ratio: 425/875;
  height: 80vh;
  width: auto;
  max-width: 425px;
  max-height: 875px;
  background: url(../../img/phone.png) repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service .video-item {
  position: absolute;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  left: calc(50% + 2px);
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: inherit;
  z-index: -1;
  border-radius: 15%;
}


/* TARIFFS */

.tariffs__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tariffs__title-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.tariffs__subtitle {
  max-width: 85%;
}

@media (max-width: 1800px) {
  .tariffs__title-wrap {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .tariffs__title-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .tariffs__title-wrap {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .tariffs__title-wrap {
    max-width: 100%;
  }
}
.tariffs__title {
  max-width: 550px;
}
.tariffs__cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tariffs__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 40px 50px 40px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  align-self: stretch;
}
.tariffs__card--primary {
  border: none;
  background: rgba(255, 255, 255, 0.1);
}

.tariffs__card__fw {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.tariffs__time {
  color: #fff;
  font-size: 30px;
  line-height: 100%;
}
.tariffs__full-price {
  font-family: Geist, sans-serif;
  color: #6A6A6A;
  font-size: 25px;
  font-weight: 500;
  height: 32px;
}
.tariffs__price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tariffs__price-title {
  font-size: clamp(30px, 2.8vw, 50px);
  font-family: Geist, sans-serif;
  line-height: 100%;
  font-weight: bold;
}
.tariffs__price-sub {
  font-size: clamp(20px, 1.6vw, 30px);
  color: #14CF93;
  font-weight: bold;
}
.tariffs__price-info {
  margin-top: -15px;
  font-size: 20px;
  height: 20px;
}
.tariffs__link {
  margin-top: 20px;
}
.tariffs__list {
  padding-left: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tariffs__item {
  line-height: 120%;
}
.tariffs__desc-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.tariffs__desc {
  display: inline-block;
  color: #6A6A6A;
}
.tariffs__offer-link {
  width: 100%;
  color: #6A6A6A;
  transition: color 0.05s ease-in-out;
}
.tariffs__offer-link:hover {
  color: #14CF93;
}

.difference__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.difference__title-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
}
@media (max-width: 1800px) {
  .difference__title-wrap {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .difference__title-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .difference__title-wrap {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .difference__title-wrap {
    max-width: 100%;
  }
}
.difference__title {
  max-width: 580px;
}
.difference__cards {
  margin-top: 85px;
  display: flex;
  gap: 20px;
  min-height: 636px;
}
.difference__midle-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  width: 100%;
}
.difference__midle-cards .difference__card:last-child {
  max-height: 100%;
  height: 100%;
}
.difference__card {
  padding: 45px 45px 70px 45px;
  display: flex;
  flex-direction: column;
  border-radius: 35px;
  border: 1px solid rgb(255 255 255 / 15%);
  justify-content: space-between;
  gap: 20px;
}
.difference__card--start, .difference__card--end {
  align-self: stretch;
}
.difference__card--start {
  max-width: 560px;
  width: 100%;
}
.difference__card--end {
  max-width: 414px;
  width: 100%;
}
.difference__card--horizontal {
  flex-direction: row;
}
.difference__card--end, .difference__card--horizontal {
  border: none;
  background: rgba(255, 255, 255, 0.03);
}
.difference__card-icon {
  max-width: 110px;
  max-height: 110px;
}
.difference__card-info {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.difference__card-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}
.difference__card-text {
  max-width: 479px;
}

.reviews {
  margin-top: 250px;
}
.reviews__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1720px;
}
.reviews__title-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
}
@media (max-width: 1800px) {
  .reviews__title-wrap {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .reviews__title-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .reviews__title-wrap {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .reviews__title-wrap {
    max-width: 100%;
  }
}
.reviews__title {
  max-width: 460px;
}
.reviews-swiper {
  margin-top: 85px;
  max-width: calc(1920px - 5vw);
  width: 100%;
  margin-left: 5vw;
}
.reviews__slide {
  position: relative;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 53px 53px 45px 53px;
}
.reviews__slide::before {
  position: absolute;
  content: "";
  top: -1px;
  right: -1px;
  width: 237px;
  height: 114px;
  background: url(../../img/corner2.svg) no-repeat center/cover;
}
.reviews__slide::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: -2px;
  width: 155px;
  height: 156px;
  background: url(../../img/corner1.svg) no-repeat center/cover;
}
.reviews__slide-icon {
  width: 59px;
  height: 48px;
  background: url(../../img/reviews-icon.svg) no-repeat center/cover;
}
.reviews__slide-stars {
  position: absolute;
  top: 20px;
  right: 10px;
  display: flex;
  gap: 7px;
}
.reviews__slide-star {
  width: 25px;
  height: 24px;
}
.reviews__slide-star--light {
  background: url(../../img/star-light.svg);
}
.reviews__slide-star--dark {
  background: url(../../img/star-dark.svg);
}
.reviews__slide-text {
  margin-top: 67px;
  height: 180px;
  color: #C6C8C9;
}
.reviews__slide-img-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98px;
  height: 98px;
  z-index: 2;
}
.reviews__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews__slide-footer {
  margin-top: 44px;
  display: flex;
  gap: 55px;
  margin-left: 120px;
}
.reviews__slide-name {
  font-size: 30px;
  line-height: 110%;
  max-width: 160px;
}
.reviews__slide-post {
  color: #6A6A6A;
  font-size: 18px;
  line-height: 110%;
}
.reviews .swiper-pagination {
  margin-top: 73px;
  position: relative;
  margin-left: -5vw;
}
.reviews .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #313131;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
}
.reviews .swiper-pagination-bullet-active {
  width: 24px;
  background: #14CF93;
}

.questions__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.questions__title-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
}
@media (max-width: 1800px) {
  .questions__title-wrap {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .questions__title-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .questions__title-wrap {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .questions__title-wrap {
    max-width: 100%;
  }
}
.questions__title {
  position: relative;
}
.questions__title::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 50%;
  left: -68px;
  transform: translateY(-50%);
  background: url(../../img/accent-star.svg) no-repeat center/cover;
}
.questions__cards {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.questions__card {
  padding-top: 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  min-height: 131px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  padding-bottom: 60px;
}
.questions__card--active .questions__card-text {
  opacity: 1;
}
.questions__card--active .questions__card-icon {
  transform: rotate(90deg);
}
.questions__card--active .questions__card-icon path {
  fill: #14CF93;
}
.questions__card-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 110%;
}
.questions__card-text-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 860px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (max-width: 1800px) {
  .questions__card-text-wrap {
    max-width: 700px;
  }
}
@media (max-width: 1400px) {
  .questions__card-text-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1300px) {
  .questions__card-text-wrap {
    max-width: 40vw;
  }
}
@media (max-width: 1024px) {
  .questions__card-text-wrap {
    max-width: 100%;
  }
}
.questions__card-text {
  max-width: 434px;
  opacity: 0;
  padding-bottom: 40px;
}
.questions__card-icon {
  position: absolute;
  top: 40px;
  right: 0;
  width: 22px;
  height: 22px;
  transition: all 0.2s ease-in-out;
}
.questions__card-icon path {
  transition: all 0.2s ease-in-out;
}
.questions__card-icon svg {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1921px) {
  .reviews {
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
  }
  .reviews-swiper {
    margin-left: 0;
  }
}
@media screen and (max-width: 1800px) {
  .promo__heading-texts {
    flex-direction: column;
  }
  .promo__heading-text:first-child {
    max-width: 100%;
  }
  .promo__heading-text:last-child {
    max-width: 100%;
  }
}
@media screen and (max-width: 1600px) {
  .difference__card--start, .difference__card--end {
    max-width: 30%;
  }
  .reviews__slide-footer {
    margin-left: 100px;
    gap: 30px;
  }
  .tariffs__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .tariffs__price-title {
    font-size: 50px;
  }
  .tariffs__price-sub {
    font-size: 30px;
  }
  .tariffs__link {
    width: auto;
  }
  .tariffs__link .section-link__icon {
    display: flex;
  }
}
@media screen and (max-width: 1400px) {
  .promo::after {
    display: none;
  }
  .header__nav {    
    gap: 20px;
  }
  .header__nav-link { 
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1300px) {
  .promo__statistic-cards {
    gap: 40px;
  }
  .section-title {
    font-size: 50px;
  }
  .promo__heading {
    flex-direction: column;
    justify-content: flex-start;
  }
  .promo__heading-info {
    margin-top: 40px;
    max-width: 100%;
  }
  .promo__heading-texts {
    gap: 20px;
  }
  .promo__footer {
    align-items: flex-end;
  }
  .promo__statistic-title {
    font-size: 110px;
  }
  .promo__statistic-sub {
    font-size: 50px;
  }
  .promo__statistic-text {
    font-size: 16px;
    line-height: 110%;
  }
  .promo__top-works {
    width: 278px;
    height: 128.6666666667px;
  }
  .promo__tg-link {
    right: 70px;
  }
  .service__title {
    font-size: clamp(40px, 4vw, 70px);
  }
  .difference__card {
    padding: 20px 20px 60px 20px;
  }
}

@media screen and (max-width: 1200px) { 
  .header__nav {    
    gap: 10px;
  }
  .header__nav-link { 
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1024px) {
  .advantages__heading,
  .service__heading,
  .tariffs__heading,
  .difference__heading,
  .reviews__heading,
  .questions__heading {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  .promo__statistic-cards {
    max-width: 50%;
    padding-right: 40px;
  }
  .tariffs__subtitle {
    max-width: 100%;
  }
  .advantages__cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
  }
  .advantages__card:nth-child(1), .advantages__card:nth-child(2) {
    max-width: calc(50% - 10px);
    width: 100%;
  }
  .advantages__card:last-child {
    margin-top: 20px;
    width: 100%;
  }
  .advantages__card:last-child .advantages__card-text {
    max-width: 500px;
  }
  .service__title {
    font-size: 50px;
  }
  .service__link {
    margin-top: 40px;
  }
  .difference__cards {
    flex-wrap: wrap;
  }
  .difference__card {
    max-width: calc(50% - 10px);
  }
  .difference__card--end {
    order: 2;
  }
  .difference__card--horizontal {
    flex-direction: column;
  }
  .difference__midle-cards {
    max-width: 100%;
    order: 3;
    flex-direction: row;
  }
  .questions__card {
    gap: 20px;
  }
  .questions__card-text-wrap {
    max-width: 60%;
  }
  .service .video-container {
    max-width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .main-title, .section-title {
    font-size: clamp(30px, 8vw, 70px);
  }
  .main-text {
    font-size: 18px;
    line-height: 120%;
  }
  .promo {
    padding: 50px;
  }
  .promo__heading-texts {
    padding-right: 0;
  }
  .promo__footer {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
  }
  .promo__statistic-cards {
    max-width: 100%;
    gap: 50px;
  }
  .promo__statistic-title {
    font-size: 150px;
    font-size: clamp(40px, 17vw, 150px);
  }
  .promo__statistic-text {
    max-width: 170px;
  }
  .promo__top-works {
    display: none;
  }
  .advantages__heading {
    flex-direction: column;
    justify-content: flex-start;
  }
  .advantages__heading-info {
    margin-top: 20px;
    max-width: 100%;
  }
  .difference__card-title {
    max-width: 150px;
  }
  .questions__card {
    flex-direction: column;
  }
  .questions__card-title {
    padding-right: 40px;
  }
  .questions__card-text-wrap, .questions__card-text {
    max-width: 100%;
  }
  .questions__card-text {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .difference__cards,
  .reviews__swiper,
  .questions__cards {
    margin-top: 70px;
  }
  .section {
    margin-top: 100px;
  }
  .promo {
    padding: 30px;
  }
  .promo__statistic-sub {
    font-size: clamp(20px, 10vw, 150px);
  }
  .advantages__cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .advantages__card {
    min-height: 300px;
  }
  .advantages__card:nth-child(1), .advantages__card:nth-child(2) {
    max-width: 100%;
  }
  .advantages__card-content {
    margin-top: 60px;
  }
  .advantages__card-text {
    max-width: 500px;
  }
  .advantages__card {
    max-width: 100%;
  }
  .advantages__midle-cards {
    max-width: 100%;
    flex-direction: column;
  }
  .advantages__card-title {
    max-width: 100%;
  }
  .tariffs__cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .difference__card {
    max-width: 100%;
  }
  .difference__midle-cards {
    order: 2;
    flex-direction: column;
    max-width: 100%;
  }
  .difference__card-title {
    margin-top: 50px;
    max-width: 100%;
  }
  .reviews__slide {
    padding: 25px;
  }
  .reviews__slide-footer {
    flex-direction: column;
    gap: 20px;
    margin-left: 110px;
  }
  .reviews__slide-name {
    max-width: 100%;
    font-size: clamp(18px, 4vw, 30px);
  }
  .reviews__slide-post {
    font-size: clamp(16px, 3vw, 30px);
  }
  .reviews-swiper {
    max-width: 1720px;
    width: 90vw;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .section-link__text {
    font-size: 14px;
    padding: 0px 30px;
  }
  .section-link__icon {
    width: 90px;
  }
  .promo {
    padding-bottom: 50px;
  }
  .promo__statistic-cards {
    gap: 20px;
  }
  .promo__statistic-text {
    font-size: 14px;
  }
  .promo__footer {
    margin-top: 50px;
  }
  .advantages__card-icon {
    width: 60px;
    height: 60px;
  }
  .questions__card-title {
    font-size: clamp(20px, 7vw, 150px);
  }
}

/* === Popup Modal === */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.popup-overlay.active {
  display: flex;
  opacity: 1;
}
.popup-modal {
  background: #181818;
  color: #fff;
  border-radius: 16px;
  max-width: 95vw;
  width: 800px;
  padding: 32px 18px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: relative;
  animation: popup-fade-in 0.25s;
}
@keyframes popup-fade-in {
  from { transform: translateY(60px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.popup-content {
  margin-top: 12px;
  padding-right: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 600px) {
  .popup-modal {
    width: 95vw;
    padding: 20px 6px 16px 8px;
    font-size: 0.95rem;
  }
}
body.popup-open {
  overflow: hidden !important;
  touch-action: none;
  -webkit-overflow-scrolling: auto !important;
}
/* === /Popup Modal === */



/* Все обычные ссылки */
a {
  color: #fff;
  transition: color 0.2s;  
}
a:hover, a:focus {
  color: #14CF93;    
  text-decoration: none;
}

/* Hover effects */
button, .button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
button:hover, .button:hover, button:focus, .button:focus {  
  color: #14CF93;
}

.footer__link {
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 1px solid transparent;
}
.footer__link:hover, .footer__link:focus {
  color: #14CF93;
  border-bottom: 1px solid #14CF93;
}

.header__nav-link {
  transition: color 0.2s;
}
.header__nav-link:hover, .header__nav-link:focus {
  color: #14CF93;
}

.header__search-button, .header__burger-button {
  transition: filter 0.2s, background 0.2s;
}
.header__search-button:hover, .header__search-button:focus,
.header__burger-button:hover, .header__burger-button:focus {
  filter: brightness(1.5);
  color: #14CF93;
}

.promo__tg-link {
  transition: box-shadow 0.2s, border-color 0.2s;
}
.promo__tg-link:hover, .promo__tg-link:focus {
  color: #14CF93;
}

.section-link__text {
  transition: color 0.2s;
}
.section-link__text:hover, .section-link__text:focus {  
  color: #14CF93;
}

.section-link:hover .section-link__text, .section-link:focus .section-link__text { 
  color: #14CF93;  
}

/* === Mobile Burger Menu === */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #181818;
    box-shadow: -8px 0 32px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 32px 32px 32px;
    z-index: 1200;
    transition: right 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
    border-radius: 0 0 0 24px;
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav.active {
    right: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,0.45);
  }
  .header__nav-link {
    font-size: 22px;
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #fff;
    text-align: left;
    transition: color 0.2s;
  }
  .header__nav-link:last-child {
    border-bottom: none;
  }
  .header__nav-bot-link {
    display: block;
    text-decoration: none;
    margin-top: 32px;
    width: 100%;
    background: #14CF93;
    color: #242424;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(20, 207, 147, 0.15);
    transition: background 0.2s, color 0.2s;
  }
  .header__nav-bot-link:hover, .header__nav-bot-link:focus {
    background: #10b87d;
    color: #fff;
  }
  .mobile-nav-overlay {
    display: none;
  }
  .mobile-nav-overlay.active {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    animation: fadeInOverlay 0.25s;
  }
  @keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }
  .header__nav-mobile-only {
    display: block;
  }
}
@media (min-width: 1025px) {
  .header__nav-mobile-only {
    display: none !important;
  }
}
/* === /Mobile Burger Menu === */


/* COOKIES */
.notification-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 540px;
  height: 136px;
  background: #000000;
  color: #fff;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 999999999999999;
  border-top-right-radius: 7px;
  align-items: center;
  opacity: 0.95;
}

.notification-bar.show {
  transform: translateX(0)
}

.notification-bar__flex_box {
  width: 70%;
  padding-left: 10%
}

.notification-bar h3 {
  color: #fff;
  margin: 0;
  text-align: left;
  font-size: .8725rem;
  font-weight: 500;
  line-height: 110%;
}

.notification-bar p {
  margin-top: 0.5rem;
  color: #fff;
  text-align: left;
  font-size: .75rem;
  line-height: 115%;
  font-weight: 400;
}

.notification-bar__links__flex_box {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}

.notification-bar a {
  color: #fff;
  margin: 5px 0 0 0;
  text-align: left;
  font-size: .752rem;
  line-height: 110%;
  text-decoration: underline;  
}

.notification-bar button {
  background-color: #8b5fad00;
  border: 1px #ffffff solid;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  font-size: 0.875rem;
  transition: all 0.2s;
  opacity: 1;
  text-transform: uppercase;
}

.notification-bar button:hover {
  opacity: .6;
  transition: all 0.2s
}

@media screen and (max-width: 768px) {
  .notification-bar {
      width: 100%;
      height: 166px;
      border-radius: 0;
      opacity: 0.95;
  }
  .notification-bar__flex_box {
    width: 67%;
    padding-left: 5%;
  }
  .notification-bar button {    
    font-size: 0.81rem;
  }
}

@media screen and (max-width: 395px) {
  .notification-bar {      
    height: 176px;      
  }  
  .notification-bar__flex_box {
    width: 60%;
  }
  .notification-bar button {    
    font-size: 0.75rem;
  }
  .notification-bar h3 {    
    font-size: .8rem;
  }
  .notification-bar p {    
    font-size: .65rem;
  }
  .notification-bar a {    
    font-size: .552rem;
  }
}

/*# sourceMappingURL=style.css.map */