/* 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 {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

b {
  font-weight: 900;
}

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: #0B0835;
  background-color: #fff;
  overflow-x: hidden;
  position: relative;
}

.btn-white {
  display: flex;
  height: 56px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 100px;
  text-decoration: none;
  color: #322F58;
  border: 1px solid rgba(255, 255, 255, 0.30);
  transition: background 300ms ease-in-out;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(0, 11, 54, 0.07) 62.12%, rgba(0, 11, 54, 0.14) 80.46%, rgba(0, 11, 54, 0.30) 100%), #FFF;
}

.btn-white:hover {
  background: #b9badb;
}


.banner-offer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 30px;
  font-size: 14px;
  line-height: 20px;
  background-color: #0057FA;
  color: #fff;
  /* display: inline-block; */
}

.banner-offer-code {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.20);
  padding: 6px 12px;
}

.banner-offer-mobile {
  border-radius: 12px;
  background-color: #1799F8;
  padding: 24px 8px;
  width: 100%;
  max-width: 500px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.banner-offer_headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.banner-offer-mobile_headline {
  text-align: center;
  margin: auto;
  line-height: 20px;
  margin-bottom: 8px;
  line-height: 160%;
  color: #fff;
}

.banner-offer_text {
  font-size: 14px;
  color: #fcfdff;
  text-decoration: none;
}

.banner-offer_code {
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.20);
}

.banner-offer_code span,
.banner-offer-mobile_code span,
.banner-offer_title span,
.banner-offer-mobile_headline span {
  color: #17F871;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.28px;
}

.banner-offer-mobile_code {
  font-size: 14px;
  text-align: center;
  line-height: 140%;
}

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

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

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

.logo {
  width: 144px;
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-size: 11px;
  color: #000;
  margin-top: 4px;
}

.logo-text--small {
  font-size: 9px;
}

.investing-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: -8px;
  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;
}

.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-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0px 140px 0px;
  position: relative;
}


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

.main-dashboard {
  background: #F9F9FC;
  overflow: hidden;
}


.dashboard__image img {
  width: 935px;
  position: absolute;
  right: -342px;
  max-width: none;
  top: 0px;
}

.dashboard__image--wide img {
  right: -412px;
}

.main-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-align: left;
  margin-bottom: 24px;
}

.highlight {
  color: #1358FF;
}

.main-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  margin-bottom: 32px;
}

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

.text-content--wide {
  max-width: 576px;
}

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

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

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

.btn-primary-blocks {
  max-width: fit-content;
}

.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;
  justify-content: center;
  padding: 16px 24px 16px 24px;
  background-color: transparent;
  text-decoration: none;
  border-radius: 12px;
  max-width: 230px;
  cursor: pointer;
  transition: background-color 0.5s;
  border: 1px solid;
  border-color: #B9BADB;
  color: #0B0835;
}

.btn-ghost:hover {
  background-color: #B9BADB;
  color: #0B0835;
}

.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;
  padding: 12px 24px 12px 24px;
  background-color: #17f871;
  color: #000b36;
  text-decoration: none;
  border-radius: 12px;
  max-width: fit-content;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  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;
}

.button-white {
  display: inline-block;
  padding: 12px 24px 12px 24px;
  background-color: #F9F9FC;
  color: #000b36;
  text-decoration: none;
  border-radius: 12px;
  max-width: fit-content;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button-white:hover {
  background-color: #ffffff;
}

.btn--wide {
  min-width: fit-content;
}

.profits {
  padding: 50px 0px;
}

.profits .container {
  padding-top: 0;
}

.profits-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

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

.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;
}

.profits-text-second {
  color: #0B0835;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 4px;
}


.howstart {
  padding: 80px 0px;
  background-color: #f9f9fc;

}

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

.howstart-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 80px;
}

.your-dash {
  padding: 80px 0;
  background-color: #f9f9fc;

}

.your-dash-title {
  color: #0B0835;
  text-align: center;

  /* Desk_S/4XL/Heavy Header */
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  /* 120.833% */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}

.your-dash-subtitle {
  margin-bottom: 72px;
  text-align: center;
}

.your-dash-image {
  border-radius: 24px;
}

.your-dash-block {
  position: relative;
}

.your-dash-feature {
  display: inline-flex;
  padding: 16px 32px 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1.585px solid rgba(255, 255, 255, 0.24);
  background: rgba(6, 0, 80, 0.54);
  box-shadow: 0 -23.778px 25.363px 0 rgba(255, 255, 255, 0.22) inset, -17.437px 0 25.363px 0 rgba(255, 255, 255, 0.22) inset, 22.985px 0 25.363px 0 rgba(255, 255, 255, 0.22) inset, -7.926px 21.4px 25.363px 0 rgba(255, 255, 255, 0.22) inset;
  backdrop-filter: blur(41.214813232421875px);
  position: absolute;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.your-dash-feature-1 {
  left: -24px;
  top: -24px;
}

.your-dash-feature-2 {
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
}

.your-dash-feature-3 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.video-subtitle {
  text-transform: uppercase;
}

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

.howstart-list::after {
  content: "";
  position: absolute;
  top: 31%;
  width: 100%;
  height: 2px;
  z-index: 1;
  background: radial-gradient(50% 50% at 50% 50%, #1358ff 0%, rgba(23, 153, 248, 0.2) 71.5%, rgb(62 136 255 / 14%) 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: #1358FF;
  margin-bottom: 33px;
}

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

.howstart-item_text {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  max-width: 262px;
}

.howstart-item_text--wide {
  max-width: 274px;
}

.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;
}

.video-block {
  padding: 80px 0px 120px;
  background-color: #f9f9fc;

}

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

.video-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #f7cb54;
  margin-bottom: 18px;
}

.video-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 40px;
}

.video-wrap {
  max-width: 940px;
  width: 100%;
  position: relative;
  aspect-ratio: 940 / 528;
}

.video-plug {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 16px;
}

iframe {
  display: none;
  border-radius: 16px;
}

.price {
  padding: 80px 0px 160px 0px;
  background: linear-gradient(89deg, #1A22FF 1.07%, #484FFF 98.37%);
}

.price .container {
  max-width: 1380px;
}


.switch-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 42px;
  position: relative;
  z-index: 100000 !important;
}

.switch-button {
  color: #E3E3F1;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background-color: transparent;
  cursor: pointer;
}

.switch-button--active {
  color: #fff;
  border: 1px solid #0057FA;
  background: rgba(255, 255, 255, 0.08);
}

.academy-access {
  border-radius: 100px;
  display: flex;
  padding: 8px 12px;
  align-items: center;
  justify-content: center;
  color: #000B36;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 10px;
  letter-spacing: 0.12px;
  margin-top: 24px;
  z-index: 1;
}

.limited-access {
  background: radial-gradient(411.99% 146.66% at 25.31% -14.42%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.26) 0.01%, rgba(97, 97, 97, 0.40) 94.5%), rgba(255, 255, 255, 0.70);
}

.full-access {
  position: relative;
  border-radius: 100px;
  padding: 8px;
  color: #000B36;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 10px;
  letter-spacing: 0.12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.full-access:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../image/svg/1.svg') repeat left center;
  transition: 0.5s;
}

.full-access span {
  position: relative;
  z-index: 2;
}


.price-item_notime {
  color: #F9F9FC;
  text-align: center;
  padding: 0 4px;
  line-height: 140%;
  position: relative;
}

.text-dop-color {
  color: #B9BADB;
}

.price-item_notime svg {
  position: absolute;
  margin-left: 4px;
}

.tooltip-block {
  display: none;
  position: absolute;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(16px);
  padding: 8px 16px;
  font-size: 16px;
  z-index: 10000;
  width: 384px;
  pointer-events: none;
  height: auto !important;
  max-height: none !important;
  white-space: normal !important;
}


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

.price-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 70px;
  width: 100%;
  position: relative;

}

.price-header_title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.01em;
  text-align: left;
  color: #F9F9FC;

}

.price-header_block {
  padding: 12px 16px 12px 16px;
  border-radius: 12px;
  border: 1px solid #746746;
  display: flex;
  max-width: 286px;
  min-height: 66px;
  height: 100%;
}

.price-header_block-icon {
  width: 100%;
  height: 100%;
  max-width: 21px;
  max-height: 21px;
  margin-right: 7px;
}

.price-header_block-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: #f7cb54;
}

.price-arrow {
  position: absolute;
  bottom: 20px;
  right: 57%;
  transform: translateX(50%);
}

.price-list {
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.price-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 0px 32px 0px;
  background: #1358FF;
  border-radius: 24px;
  /* width: 346.67px; */
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 0px 11px 1px #052295;
}

.price-item-flash {
  background: linear-gradient(171deg, #ACACFC -6.85%, rgba(0, 0, 139, 0.00) 60.21%), radial-gradient(152.07% 61.01% at 49.91% 96.65%, #ACACFC 0%, rgba(0, 0, 139, 0.00) 67.05%), #00008B;
  border: none;
}

.price-item-blaze {
  background:
    linear-gradient(171deg, rgba(226, 255, 97, 0.3) -6.85%, rgba(255, 0, 0, 0.00) 60.21%),
    radial-gradient(138.39% 57.14% at 53.94% 91.33%, #FF6161 0%, rgba(255, 0, 0, 0.00) 67.05%),
    #C86E39;
  border: none;
  position: relative;
}

.button-media {
  min-width: 200px;
}


.price-item-apex {
  background: linear-gradient(171deg, #FF6161 -6.85%, rgba(255, 0, 0, 0.00) 60.21%), radial-gradient(138.39% 57.14% at 53.94% 91.33%, #FF6161 0%, rgba(255, 0, 0, 0.00) 67.05%), #5D0000;
  border: none;
}

.price-item-daybrake {
  background: radial-gradient(109.6% 72.27% at 50% -12.13%, #16FEFE 0%, rgba(2, 58, 53, 0.00) 100%), radial-gradient(90.17% 50.07% at 50% 102.75%, #16FEFE 0%, rgba(2, 58, 53, 0.00) 100%), linear-gradient(143deg, rgba(75, 75, 75, 0.10) 14.1%, rgba(185, 185, 185, 0.10) 29.03%, rgba(140, 140, 140, 0.10) 49.26%, rgba(197, 197, 197, 0.10) 62.51%, rgba(85, 85, 85, 0.10) 86.12%), #023A35;
  border: none;
}

.price-item-spark {
  background: linear-gradient(149deg, rgba(75, 75, 75, 0.20) 8.84%, rgba(185, 185, 185, 0.20) 24.79%, rgba(140, 140, 140, 0.20) 59.8%, rgba(197, 197, 197, 0.20) 72.01%, rgba(85, 85, 85, 0.20) 85.78%), linear-gradient(171deg, rgba(153, 225, 255, 0.80) -6.85%, rgba(0, 207, 248, 0.80) 60.21%), radial-gradient(152.07% 61.01% at 49.91% 96.65%, #ACACFC 0%, rgba(0, 0, 139, 0.00) 67.05%), #00008B;
  border: none;
}

.most-choosen {
  border-radius: 256px;
  background-color: #17F871;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  min-width: max-content;
  color: #000B36;
}

.price-item_title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.price-item_line {
  max-width: 241px;
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.16;
  margin: 24px 0px;
}

.price-item_number {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #17f871;
  margin-bottom: 4px;
}

.price-item_subnumber {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #F9F9FC;
  margin-bottom: 24px;
}

.price-item_sale {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4px;
}

.price-item_forsale {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #F9F9FC;
  margin-bottom: 24px;
}

.price-item_sum {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #ffffff;
}

.price-item_subsum {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #F9F9FC;
  margin-bottom: 24px;
}

.price-item_subsum--white {
  color: #ffffff;
  opacity: 1;
}

.price-item_button {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #000B36;
  padding: 12px 20px 12px 20px;
  background: #F0F0F7;
  border-radius: 12px;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 300ms ease-in-out;
}

.price-item_button:hover {
  opacity: 0.9;

}

.item_hit::before {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 50px;
  width: 46px;
  height: 46px;
  background-image: url('../image/hit.webp');
  background-size: contain;
  background-repeat: no-repeat;
}

.focus-item {
  border: none;
  transition: background 0.3s ease-in-out;
  background: url('../image/focus.webp') no-repeat;
  background-size: cover;
}

.price-bottom-text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #ffffff;
}

.trading-academy-wrapper {
  max-width: 1200px;
  border-radius: 64px;
  border: 1px solid #4B4B4B;
  background: linear-gradient(184deg, #1358FF -3.41%, #0024B2 59.54%);
  box-shadow: 0 0 231px 0 rgba(0, 0, 0, 0.00), 0 528px 211px 0 rgba(0, 0, 0, 0.01), 0 0 28px 0 rgba(0, 0, 0, 0.03), 0 132px 132px 0 rgba(0, 0, 0, 0.02), 0 13px 73px 0 rgba(0, 0, 0, 0.02);
  padding: 56px 40px 40px 40px;
  margin: 80px auto 0;
}

.trading-academy-title {
  color: #F9F9FC;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  /* 122.222% */
  letter-spacing: -0.36px;
}


.choose-access__products {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0 24px;
}

.choose-access__product {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.choose-access__product:hover {
  opacity: 0.9;
}

.choose-access__product--week {
  background: linear-gradient(171deg, #ACACFC -6.85%, rgba(0, 0, 139, 0.00) 60.21%), radial-gradient(152.07% 61.01% at 49.91% 96.65%, #ACACFC 0%, rgba(0, 0, 139, 0.00) 67.05%), #00008B;
}

.choose-access__product--month {
  background: radial-gradient(109.6% 72.27% at 50% -12.13%, #16FEFE 0%, rgba(2, 58, 53, 0.00) 100%), radial-gradient(90.17% 50.07% at 50% 102.75%, #16FEFE 0%, rgba(2, 58, 53, 0.00) 100%), linear-gradient(143deg, rgba(75, 75, 75, 0.10) 14.1%, rgba(185, 185, 185, 0.10) 29.03%, rgba(140, 140, 140, 0.10) 49.26%, rgba(197, 197, 197, 0.10) 62.51%, rgba(85, 85, 85, 0.10) 86.12%), #023A35;
}

.choose-access__product--huge {
  background: linear-gradient(171deg, #E2FF61 -6.85%, rgba(255, 0, 0, 0.00) 60.21%), radial-gradient(138.39% 57.14% at 53.94% 91.33%, #FF6161 0%, rgba(255, 0, 0, 0.00) 67.05%), #B74A0A;

}

.choose-access__product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.choose-access__product-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 140%;
}

.choose-access__product-price {
  color: var(--Text-Default-Default, #FFF);
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
}

.choose-access__product-price--old {
  text-decoration: line-through;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.choose-access__product-line {
  background: rgba(255, 255, 255, 0.12);
  width: 100%;
  height: 1px;
}

.choose-access__product .btn-white {
  width: 100%;
}

.choose-access__badge {
  position: absolute;
  top: -10px;
  left: 24px;
  border-radius: 16px;
  background: #17F871;
  color: var(--base-black, #000);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  padding: 3px 8px;
}

.choose-access__product-texts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.choose-access__product-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.choose-access__plans {
  overflow-x: auto;
}

.choose-access__plans-title {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}

.choose-access__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 350px));
  grid-template-rows: repeat(3, auto);
  row-gap: 8px;
  column-gap: 24px;
}

.choose-access__feature {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  color: #fff;
}

.choose-access__feature p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.choose-access__feature svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.leaderboard {
  padding: 80px 0px;
}


.leaderboard-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 16px;
}

.leaderboard-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 48px;
}


.trade {
  background-color: #F9F9FC;
  padding: 80px 0px;
}

/* ----------------------------------------------- */

.award {
  background-image:
    image-set(url('../image/award.webp') 1x,
      url('../image/award@2x.webp') 2x),
    linear-gradient(89deg, #1A22FF 1.07%, #484FFF 98.37%);

  background-size: contain, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom, center;
  padding: 80px 0 0;
}


.award-content {
  min-height: 300px;
  padding-left: 100px;
}

.award-subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  color: #F9F9FC;
}

.award-title {
  color: #F9F9FC;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-top: 12px;
}

.award-customers {
  margin-top: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 17px;
  max-width: fit-content;
  color: #F9F9FC;
}

.award-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
}

.award-text-number {
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
}

.award-text-clients {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* ----------------------------------------------- */



.trade-wrapper {
  max-width: 1120px;
  min-height: 480px;
  background-image: url('../image/sponsorship.webp');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  padding-top: 80px;
  padding-left: 24px;
}

.trade-content {
  max-width: 500px;
}

.sponsor {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 8px;
}

.sponsor-name {
  margin-bottom: 16px;
}

.sponsor-name span {
  font-size: 46px;
  font-style: italic;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  display: block;
  text-align: center;
  background: linear-gradient(180deg, #80FF00 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #80FF00;
  padding: 0 10px;
}

.sponsor-name--big {
  font-size: 64px;
}

.sponsor-descr {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 8px;
  max-width: 400px;
  margin: 8px auto 0;
}


.footer {
  background-color: #F9F9FC;
}

.footer-content {
  border-top: 1px solid #E3E3F1;
  padding: 40px 24px;
  max-width: 1120px;
}

.footer-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #1C1E4E;
  margin-bottom: 8px;
}

.footer-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #1C1E4E;
  margin-bottom: 16px;

}

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

.footer-block__content {
  display: flex;
  gap: 40px;
}

.footer-gap {
  gap: 32px;
}

.footer-block__item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #1C1E4E;
  text-decoration: none;
  outline: none;
}

.link_border {
  border-bottom: 1px solid #C9CAE3;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-wrap__mail {
  text-decoration: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #0057FA;
  border-bottom: 1px solid #C2C9FF
}

.footer-wrap__date {

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #1C1E4E;
  text-align: right;
  display: flex;
  flex-direction: column;

}

.btn-primary-block-fra {
  min-width: 197px;
}

.banner-offer_btn {
  padding: 6px 24px;
}

.banner-offer_btn-text {
  font-size: 14px;
}

.price-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 50px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.price-nav_item {
  background-color: #575E7B;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.price-nav_item.active {
  background-color: #ffffff;
}

.info-item {
  height: auto;
  padding: 24px 32px 32px;
}

.info-item_sub {
  color: #282A66;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-top: 8px;
}

.academy-video-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: black;
  opacity: 0.5;
}

.academy {
  background-color: #F9F9FC;
  padding: 0px 0px 80px;
  border-radius: 54px 54px 0 0;
  margin-top: -54px;
}

.academy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}


.academy-title {
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 122.222% */
  letter-spacing: -0.36px;
  text-align: center;
  padding: 0 16px;
  color: #000b36;
}

.academy-subtitle {
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 122.222% */
  text-align: center;
  margin-top: 16px;
  color: #000b36;
}

.academy-video-title {
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 122.222% */
  margin-top: 16px;
  color: #000b36;
  text-align: left;
}

.academy-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 80px;
}

.academy-video {
  flex: 1
}

.academy-video-wrap {
  max-width: 356px;
  width: 100%;
  position: relative;
  aspect-ratio: 356 / 254;
}


.swiper-pagination3 {
  display: none;
}

.info {
  background-color: #f9f9fc;
  padding: 80px 0px;
}

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

.info-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #1c1e4e;
  margin-bottom: 80px;
}

.info-title br {
  display: none;
}

.info-one {
  display: grid;
  grid-template-columns: 519px 195px 358px;
  gap: 24px;
  margin-bottom: 24px;
}

.info-two {
  display: grid;
  grid-template-columns: 280px 215px 577px;
  gap: 24px;
}

.info-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 24px;
}


.info-item {
  padding: 24px 32px 24px 32px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 224px;
}

.info-item-last {
  flex-direction: row;
  max-width: 664px;
  margin-top: 20px;
}

.info-item_image {
  align-self: center;
}

.info-item_text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  color: #282a66;
}

.info-item {
  height: auto;
  padding: 24px 32px 32px;
  gap: 32px;
}

.info-item_sub {
  color: #282A66;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-top: 8px;
}

.info-mobile-container,
.info-mobile-container2,
.info-mobile-container3 {
  overflow: visible;
  padding: 50px 16px;
  margin: -50px -16px;
}

.info-mobiles2 {
  justify-content: center;
  align-items: center;
}

.info-items2 {
  max-width: 355px;
}

.hide-desktop {
  display: none;
}

.statistic {
  background: #F9F9FC;
  padding: 50px 0px;
}

.statistic .container {
  padding-top: 0;
}

.statistic-content {
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

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

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

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

.statistic-text-second {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 4px;
}

/* ===== Leaderboard dynamic (lb-*) ===== */

.lb-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.lb-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(11, 8, 53, 0.12);
  border-top-color: #0057FA;
  border-radius: 50%;
  animation: lb-spin 0.75s linear infinite;
}

@keyframes lb-spin {
  to {
    transform: rotate(360deg);
  }
}

.lb-podium {
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
  margin-bottom: 40px;
}

.lb-podium-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
}

.lb-podium-card--gold {
  background: linear-gradient(180deg, #FFBE3C 0%, #B18A0C 100%), rgba(0, 11, 54, 0.08);
  border: 1px solid #DAA520;
}

.lb-podium-card--silver {
  background: linear-gradient(180deg, #C7C7C7 0%, #979797 100%), rgba(0, 11, 54, 0.08);
  border: 1px solid #A9A9A9;
}

.lb-podium-card--bronze {
  background: linear-gradient(180deg, rgba(141, 106, 106, 0.90) 0%, rgba(116, 100, 85, 0.90) 100%), rgba(0, 11, 54, 0.08);
  border: 1px solid #B87333;
}

.lb-podium-header {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.lb-podium-cup {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.lb-podium-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  flex: 1;
  gap: 4px;
}

.lb-podium-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  width: 100%;
}

.lb-podium-country-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.lb-podium-flag {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
}

.lb-podium-country-name {
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Martian Mono";
}

.lb-podium-rank-num {
  font-size: 44px;
  font-weight: 900;
  color: rgba(11, 8, 53, 0.15);
  flex-shrink: 0;
  line-height: 1;
}

.lb-podium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.lb-podium-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.lb-podium-stat--right {
  align-items: flex-end;
}

.lb-podium-stat-label {
  font-size: 13px;
  color: #fff;
  opacity: 0.8;
}

.lb-podium-stat-value {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  font-family: "Martian Mono";
}

.lb-podium-stat-value--green {
  color: #17F871;
}

/* Table */
.lb-table-wrap {
  width: 100%;
  background: #F9F9FC;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 8, 53, 0.08);
}

.lb-table-header {
  display: grid;
  grid-template-columns: 50px 1fr 160px 160px 160px 100px;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid #E3E3F1;
}

.lb-table-header--wide {
    grid-template-columns: 50px 1fr 160px 160px 160px 120px;
}

.lb-th {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #7476AA;
}

.lb-th--right {
  text-align: right;
}

.lb-row {
  display: grid;
  grid-template-columns: 50px 1fr 160px 160px 160px 100px;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid rgba(11, 8, 53, 0.06);
  align-items: center;
}

.lb-row:last-child {
  border-bottom: none;
}

.lb-td {
  font-size: 18px;
  font-weight: 500;
  color: #0B0835;
}

.lb-td--rank {
  font-weight: 600;
  color: rgba(11, 8, 53, 0.4);
}

.lb-td--name {
  font-weight: 500;
  min-width: 0;
}

.lb-name-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.lb-flag {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
}

.lb-name-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lb-name-email {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-name-product {
  display: none;
  font-size: 12px;
  color: rgba(11, 8, 53, 0.5);
}

.lb-td--profit,
.lb-td--equity,
.lb-td--plan,
.lb-td--growth,
.lb-td--combined {
  text-align: right;
}

.lb-green {
  color: #22C55E;
}

.lb-desktop-cell {
  display: block;
}

.lb-mobile-cell {
  display: none;
}

.lb-combined-growth {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.lb-combined-profit {
  display: block;
  font-size: 12px;
  color: rgba(22, 163, 74, 0.75);
}

.lb-disclaimer {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(11, 8, 53, 0.4);
  text-align: center;
}
