/* #region HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero__slider {
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #0d102d;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.hero__slide--right .hero__container {
  justify-content: flex-end;
}

.hero__slide--left .hero__container {
  justify-content: flex-start;
}

.hero__content {
  max-width: 660px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.swiper-slide-active .hero__content {
  opacity: 1;
  transform: translateY(0);
}

.hero__subtitle {
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 42px;
  color: #e0e0e0;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  margin-inline: 14px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff06b7;
  transform: scale(1.5);
}

.swiper-pagination {
  bottom: 30px !important;
}

@media (width <= 1200px) {
  .hero__slide--right .hero__container {
    justify-content: start;
  }
  .hero__container {
    padding-inline: 98px;
    top: -25%;
  }
  .hero__bg {
    object-position: left;
  }
  .hero__subtitle {
    font-size: 14px;
  }
  .hero__text {
    font-size: 14px;
  }
}

@media (width <= 768px) {
  .hero {
    height: 680px;
  }

  .hero__container {
    padding-inline: 15px;
    position: static;
    height: stretch;
    padding-top: 78px;
  }

  .hero__actions {
    flex-direction: column;
  }
}

/* #endregion HERO SECTION */

/* #region ABOUT SECTION */
.about {
  padding-block: 130px;
}

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

.about__img {
  max-width: 490px;
}

.about__content {
  flex-basis: 660px;
  padding: 30px 15px 0 15px;
}

.about__subtitle {
  display: block;
  color: #ff06b7;
  font-size: 14px;
  line-height: 1.66;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about__title {
  font-size: 40px;
  margin-bottom: 20px;
}

.about__text {
  line-height: 1.8;
  margin-bottom: 30px;

  p:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (width <= 1200px) {
  .about {
    padding-block: 100px;
  }
  .about__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (width <= 768px) {
  .about__content {
    padding: 0;
  }
  .about__title {
    font-size: 34px;
  }
}

/* #endregion ABOUT SECTION */

/* #region STATISTICS SECTION */
.statistics {
  padding-block: 130px;
  background: #131740;
}
.statistics__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.statistics__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.statistics__text {
  font-size: 20px;
}

@media (width <= 1200px) {
  .statistics {
    padding-block: 100px;
  }
  .statistics__wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (width <= 768px) {
  .statistics__title {
    font-size: 40px;
  }

  .statistics__text {
    font-size: 16px;
  }
}

/* #endregion STATISTICS SECTION */

/* #region FEATURES SECTION */
.features {
  padding-block: 130px;
}

.features__subtitle {
  display: block;
  color: #ff06b7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.features__title {
  margin-bottom: 50px;
}

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

.features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 16px 18px 0 rgba(1, 12, 50, 0.1);
  z-index: 1;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(
      180deg,
      #ff06b7 0%,
      #010314 47.6%,
      #131740 98.23%
    );
    z-index: -1;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
  }

  &:hover {
    box-shadow: 0 16px 30px 0 rgba(255, 6, 183, 0.4);

    &::before {
      clip-path: inset(0 0 0% 0);
    }

    .features__item-title {
      color: #ff06b7;
    }
  }

  & * {
    position: relative;
    z-index: 2;
  }
}

.features__item-img {
  border-radius: 8px;
  border: 1px solid #ff06b7;
  overflow: hidden;

  img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.features__item-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  transition: color 0.7s;
}

@media (width <= 1200px) {
  .features {
    padding-block: 100px;
  }
  .features__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .features__item-title {
    font-size: 20px;
  }
}

/* #endregion FEATURES SECTION */

/* #region GET STARTED SECTION */
.get-started {
  padding-block: 140px;
  background: #131740;
}
.get-started__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.get-started__content {
  display: flex;
  flex-direction: column;
  max-width: 664px;
}

.get-started__content-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.get-started__content-text {
  font-size: 20px;
}

.get-started__img {
  max-width: 630px;
}

.get-started__subtitle {
  display: block;
  color: #ff06b7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.get-started__title {
  margin-bottom: 50px;
}

.get-started__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.get-started__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #ff06b7;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 18px 0 rgba(1, 12, 50, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(
      135deg,
      rgba(255, 6, 183, 0.15) 0%,
      rgba(255, 6, 183, 0.05) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  &:hover {
    transform: translateY(-4px);
    border-color: #ff06b7;
    box-shadow: 0 20px 35px 0 rgba(255, 6, 183, 0.3);
    background: rgba(255, 255, 255, 0.08);

    &::before {
      opacity: 1;
    }
  }

  & > * {
    position: relative;
    z-index: 1;
  }
}

.get-started__item-icon {
  display: flex;
  width: 72px;
  height: 72px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  border-radius: 36px;
  background: #131740;
}

.get-started__item-title {
  font-size: 20px;
  margin-bottom: 12px;
}

@media (width < 1440px) {
  .get-started {
    padding-block: 100px;
  }

  .get-started__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

@media (width <= 768px) {
  .get-started__content,
  .get-started__img {
    max-width: 100%;
  }

  .get-started__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 24px;
  }
}

/* #endregion GET STARTED SECTION */

/* #region TEAM SECTION */

.team {
  padding-block: 130px;
}

.team__subtitle {
  display: block;
  color: #ff06b7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.team__title {
  margin-bottom: 50px;
}

.team__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.team__item {
  display: flex;
  padding: 50px 65px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-radius: 15px;
  border: 1px solid #ff06b7;
  background: #131740;
  box-shadow: 0 16px 18px 0 rgba(1, 12, 50, 0.1);
  transition: box-shadow 0.3s;

  &:hover {
    box-shadow: 0 16px 18px 0 rgba(255, 6, 183, 0.2);

    .team__item-img {
      scale: 1.3;
    }

    .team__item-name {
      color: #ff06b7;
    }
  }
}

.team__item-img {
  width: 100%;
  max-width: 150px;
  transition: scale 0.3s;
}

.team__item-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 240px;
}

.team__item-name {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.05px;
  transition: color 0.3s;
}

.team__item-text {
  font-size: 14px;
  line-height: 1.2;
  color: #92939e;
}

.team__item-social {
  display: flex;
  gap: 12px;
  align-items: center;

  a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    color: #000;
    background: #fff;
    transition: background-color 0.3s, color 0.3s;

    &:hover {
      background-color: #ff06b7;
      color: #fff;
    }
  }
}

@media (width <= 1200px) {
  .team {
    padding-block: 100px;
  }

  .team__items {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 24px;
    max-width: 560px;
    margin-inline: auto;
  }

  .team__item {
    align-items: center;
    padding: 40px 44px;

    &:hover {
      .team__item-img {
        scale: 1.1;
      }
    }
  }

  .team__item-img {
    max-width: 150px;

    img {
      max-width: 100%;
    }
  }
  .team__item-content {
    max-width: 100%;
  }
  .team__item-name {
    font-size: 28px;
  }
}

@media (width <= 768px) {
  .team__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    gap: 34px;
  }
  .team__item-img {
    max-width: 140px;
  }
  .team__item-content {
    align-items: center;
    text-align: center;
  }
  .team__item-name {
    letter-spacing: -0.84px;
  }
}

/* #endregion TEAM SECTION */

/* #region CLIENT SECTION */
.client {
  padding-block: 130px;
  background-color: #131740;
}

.client__subtitle {
  display: block;
  color: #ff06b7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.client__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 50px;
}

.client__content {
  display: flex;
  justify-content: space-between;
  gap: 55px;
}

.client__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  max-width: 250px;
  width: 100%;
  padding: 70px 20px;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid #ff06b7;
  background: url("/img/bg-client.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;

  h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
  }
}
.client__reviews {
  position: relative;
  max-width: 936px;
  width: 100%;

  .swiper-pagination {
    bottom: 0 !important;
    left: -10px !important;
    text-align: left;
  }
}

.client__review-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.client__review-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client__review-top-left-content {
  font-size: 16px;
  color: #92939e;

  h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
  }
}

.client__review-top-right {
  display: flex;
  gap: 6px;
  align-items: center;
}

@media (width <= 1200px) {
  .client {
    padding-block: 100px 50px;
  }
  .client__subtitle {
    margin-bottom: 20px;
  }
  .client__title {
    align-items: center;
    h2 {
      max-width: 350px;
    }
  }
  .client__content {
    flex-direction: column;
    gap: 30px;
  }

  .client__reviews {
    .swiper-pagination {
      position: static;
      margin-top: 40px;
      text-align: center;
    }
  }
}

@media (width <= 768px) {
  .client__review-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .client__review-top-left {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* #endregion CLIENT SECTION */

/* #region FAQ SECTION */
.faq {
  padding-block: 140px;
}
.faq__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.faq__subtitle {
  display: block;
  color: #ff06b7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.faq__title {
  margin-bottom: 60px;
}
.faq__content {
  max-width: 634px;
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 634px;
}

.faq-accordion__item {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ff06b7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.faq-accordion__item--active {
  background: linear-gradient(90deg, #5c00a3 0%, #1a0033 100%);

  .faq-accordion__number {
    background: #fff;
    color: #ff06b7;
  }

  .faq-accordion__header {
    background: transparent;

    &:hover {
      background-color: transparent;
    }
  }
}

.faq-accordion__header {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 22px 30px;
  background: #131740;
  color: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s;

  &:hover {
    background-color: rgb(19, 23, 64, 0.5);
  }
}

.faq-accordion__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(
    38deg,
    #ff06b7 0%,
    rgba(46, 32, 255, 0.27) 50%,
    #131740 100%
  );
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.9px;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.faq-accordion__title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.9px;
}

.faq-accordion__icon {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
  align-self: center;
}

.faq-accordion__item--active .faq-accordion__icon {
  transform: rotate(0deg);
}

.faq-accordion__content {
  background-color: #1a0033;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
}

.faq-accordion__text {
  padding: 22px 30px;
  border-top: 1px dotted #ff06b7;
}

@media (width <= 1200px) {
  .faq {
    padding-block: 100px;
  }
  .faq__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .faq__content {
    max-width: 100%;
  }
  .faq__img {
    max-width: 510px;
    margin-inline: auto;
  }
  .faq-accordion {
    margin-inline: auto;
  }
}

@media (width <= 768px) {
  .faq-accordion {
    max-width: 100%;
  }
  .faq-accordion__header {
    padding: 16px 24px;
  }
  .faq-accordion__number {
    align-self: flex-start;
  }
}

/* #endregion FAQ SECTION */
