/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
}

html {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

ol,
ul, li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

b {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: regular;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #000000;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1240px;
  padding: 12px 20px 0;
}

.desktop-none {
  display: none;
}

.accent-green {
  color: #17F871;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 10px 30px;
  min-width: 280px;
  min-height: 56px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  /* 150% */

  border: 2px solid transparent;
  border-image-source: linear-gradient(180deg, #FFFFFF, #47FF5C);
  border-image-slice: 0;
  border-radius: 12px;

  background: linear-gradient(180deg, #47FF5C 0%, #FFF 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-green:hover {
  transform: scale(1.03);
  box-shadow: 0 0 6px rgba(0, 255, 0, 0.3);
}




.main-header {
  padding: 0px 0 20px;
  text-align: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 150px;
}


.lang-switch {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  cursor: pointer;
}

.lang-switch_text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.lang-switch_img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.lang-switch_arrow {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}



/* dropdown */
.lang-switch {
  position: relative;
}

.lang-switch .dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding-top: 8px;
}

.lang-switch .dropdown .dropdown-step {
  background-color: #2e317c;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lang-switch .dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  min-width: 95px;
  cursor: pointer;
}

.dropdown-item span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #FFFFFF;

}

.dropdown-item:hover span {

  color: #B9BADB;

}

.lang-switch .dropdown-item img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.lang-switch:hover .dropdown,
.lang-switch.active .dropdown {
  opacity: 1;
  pointer-events: all;
}

/* Добавить переход для плавного появления */
.lang-switch .dropdown {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lang-switch:hover .dropdown,
.lang-switch.active .dropdown {
  opacity: 1;
}

/* dropdown */

.main-wrapper {
  background: url('../image/desk-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 0px 0px 0px;
  position: relative;
}

.main-dashboard {
  position: relative;
}

.main-dashboard::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 115px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 5.13%, rgba(0, 0, 0, 0.64) 46.84%, #000 100%);
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

.dashboard {
  position: absolute;
  right: -70px;
  bottom: 0;
}


.dashboard img {
  max-width: 790px;
  height: auto;
}
.dashboard--small img {
  max-width: 690px;
}


.main-title {
  font-family: "Inter", sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 110%;
  text-align: left;
  color: #ffffff;
  margin-bottom: 24px;
}

.main-title--small {
  font-size: 68px;
}

.highlight {
  color: #17f871;
}

.main-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  color: #fff;
  margin-bottom: 32px;
  max-width: 356px;
}

.text-content {
  max-width: 715px;
  width: 100%;
}

.main-benefits {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-bottom: 100px;
}

.main-benefits-itemContainer {
  padding: 8px;
  border-radius: 16px;
  border: 1.152px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(315deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.main-benefits-item {
  display: flex;
  gap: 8px;
  flex-direction: column;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(315deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.main-benefits-text {
  color: #E3E3F1;
  font-size: 20px;
  font-weight: 500;
}

.main-benefits-number {
  color: #FFF;
  font-family: Inter;
  font-size: 64px;
  font-weight: 600;
  line-height: 100%;
}

.button-group {
  display: flex;
  gap: 16px;
}

.btn-primary {
  display: flex;
  align-items: center;
  padding: 16px 24px 16px 24px;
  background-color: #0057FA;
  text-decoration: none;
  border-radius: 12px;
  color: #ffffff;
  max-width: 199px;
  cursor: pointer;
  transition: background-color 0.5s;
}

.btn-primary:hover {
  background-color: #0045CC;
  transition: background-color 0.5s;
}

.btn-primary-blocks {
  max-width: 199px;
}

.btn-primary_text {
  margin-right: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.btn-primary_image {
  width: 24px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px 16px 24px;
  background-color: transparent;
  text-decoration: none;
  border-radius: 12px;
  color: #fcfdff;
  max-width: 230px;
  cursor: pointer;
  transition: background-color 0.5s;
  border: 1px solid;
  border-color: #B9BADB;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-ghost_text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.btn-ghost-blocks {
  max-width: 199px;
}


.btn-secondary {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  right: 170px;
  padding: 16px 24px 16px 24px;
  background-color: #17f871;
  color: #000b36;
  text-decoration: none;
  border-radius: 12px;
  max-width: 266px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0px 4px 62.9px 3px #72dc604d;
}

.btn-secondary:hover {
  background-color: #00cc00;
}

.benefits {
  position: relative;
  background: url('../image/benefits/benefits-bg.webp');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 75%;
}

.benefits-content {
  padding: 80px 40px;
}

.benefits-title {
  max-width: 584px;
  margin: auto;
  margin-bottom: 64px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.benefits-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.benefits-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 16px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  max-width: 364px;
  min-height: 168px;
  background: linear-gradient(256deg, rgba(255, 255, 255, 0.00) -10.56%, rgba(255, 255, 255, 0.04) 12.6%, rgba(255, 255, 255, 0.00) 78.1%), rgba(166, 166, 166, 0.08);
}

.benefits-item_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%; 
}

.benefits-item_text--small {
  font-size: 18px;
}

.plans-content {
  padding: 80px 0px;
}
.plans-title {
  margin-bottom: 64px;
}
.plans-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.plans-itemContainer {
  width: 100%;
  padding: 16px;
  border-radius: 26px;
  background: url('../image/plan-inner.png') no-repeat;
  background-size: cover;
  border: 1px solid  rgba(255, 255, 255, 0.12);
}

.plans-item {
  width: 100%;
  height: 100%;
  min-height: 402px;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid  rgba(255, 255, 255, 0.12);
  background: url('../image/plan-bg.webp') no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plans-header {
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: space-between;
  align-items: flex-start;
}

.plans-text {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

.plans-number {
  font-size: 99px;
  font-weight: 600;
  line-height: 100%;
}

.plans-number--medium {
  font-size: 89px;
}

.plans-number-small {
  font-size: 64px;
  line-height: 120%;
}

.plans-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

.profits {

  padding: 50px 0px;
}

.profits-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.profits-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 262px;
  height: 84px;
}

.profits-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 16px;
}

.profits-text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #0b0835;
  margin: 0;
}

.howstart {
  padding: 80px 0px;
}

.howstart-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.howstart-title {
  margin: auto;
  margin-bottom: 80px;
  max-width: 470px;
}

.title--wild {
  max-width: 550px;
}

.howstart-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}

.howstart-list::after {
  content: "";
  position: absolute;
  top: 25%;
  width: 100%;
  height: 2px;
  z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%,
      #17f871 0%,
      rgba(98, 188, 82, 0.69) 71.5%,
      rgba(61, 118, 51, 0) 100%);
}

.howstart-item {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.howstart-item_number {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #17f871;
  margin-bottom: 33px;
}

.howstart-item_icon {
  width: 32px;
  height: 32px;
  margin-bottom: 40px;
  z-index: 3;
  position: relative;
}

.howstart-item_text {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 120%;
  text-align: left;
  color: #ffffff;
  max-width: 262px;
}

.howstart-item_subtext {
  color:#C9CAE3;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%; 
  max-width: 262px;
  margin-top: 4px;
}

.howstart-button {
  min-width: 240px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  justify-content: center;
}

.paid-content {
  padding: 80px 0px;
  text-align: center;
}

.paid-list {
  text-align: center;
}

.paid-list img {
  display: block;
  margin: 0 auto;
}

.paid-title {
  margin-bottom: 16px;
}

.paid-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 64px;
}

.paid-button {
  justify-content: center;
  margin-top: 64px;
}

.video-block {
  padding: 80px 0px;
}

.video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-subtitle {
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  max-width: 900px;
  margin: auto;
  margin-bottom: 64px;
}

.video-title {
  margin-bottom: 16px;
}

.video-wrap {
  max-width: 940px;
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 auto; 
}

.video-wrap img,
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  border-radius: 16px; 
}

.video-plug {
  cursor: pointer;
}

iframe {
  display: none;
}


.reviews-content {
  padding: 80px 0px 0;
}

.reviews-swiper {
  padding-bottom: 80px;
}

.reviews-title {
  margin-bottom: 16px;
}

.reviews-subtitle {
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 60px;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reviews-list-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.reviews-item-container {
  padding: 16px;
  height: fit-content;
  border-radius: 16px;
  border: 1px solid  rgba(255, 255, 255, 0.12);
  background: url('../image/plan-inner.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.reviews-item {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid  rgba(255, 255, 255, 0.12);
  background: url('../image/plan-bg.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

.reviews-item-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.reviews-item_text {
  margin-top: 16px;
}

.reviews-item_icon {
  width: 48px;
  height: 48px;
}

.faq {
  padding: 80px 0;
}

.faq .accordeon {
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
}

.faq .accordeon__button {
  padding: 20px 60px 20px 24px;
  width: 100%;
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq .accordeon__button svg {
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq .accordeon__item {
  position: relative;
}

.faq .accordeon__item:before {
  content: "";
  display: block;
  width: 690px;
  height: 17px;
  position: absolute;
  top: -13px;
  left: 0;
  z-index: 0;
  background: url(../image/faq/fa.png) no-repeat !important;
}

.faq .accordeon__item:last-child:after {
  content: "";
  display: block;
  width: 690px;
  height: 17px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: url(../image/faq/fa.png) no-repeat !important;
}

.faq .panel__text {
  max-width: 610px;
  padding: 0 24px;
  margin: 0px 0 20px;
}

.faq .panel__text p {
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 10px;
}

.faq .panel__text ul {
  margin-bottom: 10px;
  list-style-type: disc;
  padding-left: 25px;
}

.faq .panel__text ul li {
  font-size: 16px;
  margin-bottom: 5px;
}

.faq__title {
  text-align: center;
  margin-bottom: 64px;
}

.accordeon__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordeon__button.open {
  font-weight: bold;
}

.accordeon__button.open svg {
  transform: rotate(180deg);
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}





.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #C9CAE3;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding-bottom: 40px;

}


.swiper-pagination .swiper-pagination-clickable .swiper-pagination-bullets .swiper-pagination-horizontal {
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #575E7B;
}

.swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}


.swiper-pagination {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  width: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
