:root {
  --white-color: #ffffff;
  --second-white-color: #e1e3e4;
  --black-color: #000;
  --accent-color: #7f35ff;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  object-fit: cover;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: auto;

  overflow-x: hidden;
  scrollbar-width: none;
  background: var(--black-color);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
select {
  color: var(--second-white-color);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "liga" off, "clig" off;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

button,
a {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-width: 0;
  font-weight: normal;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  padding: 30px 120px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.btn {
  background: var(--black-color);
  color: var(--white-color);
  font-family: "Inter", sans-serif;
  padding: 12px 12px 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 6px;
  background: var(--white-color);
  stroke: var(--black-color);
}
.color-btn,
.second-color-btn {
  background: var(--accent-color);
}

.second-color-btn {
  padding: 16px 32px;
  font-weight: 400;
  letter-spacing: -0.312px;
  line-height: 1.5;
}

.second-color-btn svg {
  stroke: var(--white-color);
}

.btn:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.color-btn:hover {
  color: var(--black-color);
  background: var(--white-color);
}

.color-btn:hover .btn-icon {
  background: var(--black-color);
  stroke: var(--second-white-color);
}

.second-color-btn:hover {
  background: #6a2cd6;
}

@media (max-width: 1500px) {
  .container {
    padding: 30px 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
}

/* Header */

.header-section {
  z-index: 2;
}
.header-container {
  padding: 20px 120px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 68px;
}
.header-menu-item {
}
.header-menu-link {
  color: var(--white-color);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.068px;
}

.menu-btn {
  padding: 8px 8px 8px 24px;
  background: var(--white-color);
  color: var(--black-color);
}
.menu-btn .btn-icon {
  width: 44px;
  height: 44px;
  padding: 12px;
  background: var(--black-color);
  stroke: var(--white-color);
}
.menu-btn:hover {
  background: var(--black-color);
  color: var(--white-color);
}
.menu-btn:hover .btn-icon {
  background: var(--white-color);
  stroke: var(--black-color);
}

@media (max-width: 1500px) {
  .header-container {
    padding: 60px 40px 30px 40px;
  }
}

@media (max-width: 1350px) {
  .header-menu {
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .header-section {
    display: none;
  }
}

/* Hero */

.hero-section {
  z-index: 2;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: 0%;
  top: -25%;
  border-radius: 16777200px;
  background: var(--accent-color);
  mix-blend-mode: screen;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  padding: 113px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.hero-container::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  border-radius: 846px;
  width: 823px;
  height: 846px;
  opacity: 0.6;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #7f35ff 0%,
    rgba(17, 17, 19, 0) 100%
  );

  mix-blend-mode: screen;
  filter: blur(77px);
  z-index: 0;
}

.hero-first-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-pre-title {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 16777200px;
  border: 1px solid rgba(127, 53, 255, 0.2);
  background: rgba(127, 53, 255, 0.1);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.hero-pre-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}

.hero-title {
  color: var(--white-color);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.123px;
}

.hero-subtitle {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.352px;
}

.hero-first-text {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
  max-width: 400px;
}
.hero-first-text span {
  color: var(--white-color);
}

.currency-card {
  max-width: 448px;
  height: 170px;
  padding: 25px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}
.currency-card-top-block {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 16px;
}
.currency-card-top-block div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.currency-card-img {
  width: 48px;
  height: 48px;
}

.currency-card-top-block div div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5px;
}
.currency-card-ticket {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}
.currency-card-name {
  color: #b6b6b6;
  font-size: 12px;
  line-height: 1.33;
}
.btn-icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 50%;
  background: var(--second-white-color);
}
.currency-card-bottom-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.currency-card-text-block {
}
.currency-card-price {
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.07px;
}
.currency-card-percent {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}
.currency-card-chart {
  width: 80px;
  height: 40px;
  flex-shrink: 0;
}

@media (max-width: 1500px) {
  .hero-container {
    padding: 30px 40px;
  }
}

@media (max-width: 1100px) {
  .hero-container {
    padding-top: 60px;
    padding-bottom: 220px;
    flex-direction: column;
    gap: 16px;
  }
  .hero-first-block {
    flex-direction: column;
    gap: 16px;
  }
  .hero-pre-title {
    margin: 0 auto;
  }
  .hero-title,
  .hero-subtitle,
  .hero-first-text {
    text-align: center;
  }
  .hero-first-text {
    max-width: 700px;
  }

  .hero-first-block .currency-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .hero-first-block .currency-card .currency-card-top-block {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 32px;
    padding-bottom: 220px;
    gap: 12px;
  }
  .hero-first-block {
    gap: 12px;
  }
  .hero-title {
    font-size: 50px;
  }
  .hero-subtitle {
    font-size: 30px;
  }
  .hero-first-block .currency-card {
    max-width: 360px;
  }
  .hero-first-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-section::before {
    content: none;
  }

  .hero-container::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 846px;
    width: 823px;
    height: 846px;
    opacity: 0.6;
    background: radial-gradient(
      50% 50% at 50% 50%,
      #7f35ff 0%,
      rgba(17, 17, 19, 0) 100%
    );

    mix-blend-mode: screen;
    filter: blur(77px);
    z-index: 0;
  }
}

/* Hero Form */

.hero-form-block {
  max-width: 535px;
  z-index: 2;
}
.hero-form-block-white {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-form-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-form-title {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.396px;
}
.hero-form-subtitle {
  color: #595555;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}
.hero-form {
  display: flex;
  flex-direction: column;
}
.hero-form-input {
  width: 100%;
  height: 56px;
  border-radius: 9999px;
  padding: 18.5px 16px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  font-size: 16px;
  line-height: normal;
  color: #595555;
  transition: all 0.3s ease;
}

.hero-form-input:not(:first-of-type) {
  margin-top: 16px;
}
.hero-form-input:hover,
.hero-form-input:focus {
  border: 1px solid #b5b5b5;
}

.hero-form-input.error {
  border: 1px solid #df5e63;
  color: #df5e63;
}
.error {
  color: #df5e63;
}
form .btn {
  margin-top: 16px;
  width: 100%;
  padding: 18px;
  font-weight: 400;
  letter-spacing: -0.312px;
  line-height: 1.5;
}
.checkbox {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  background: var(--black-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  color: #595555;
  font-size: 12px;
  line-height: 1.33;
}

@media (max-width: 768px) {
  .hero-form-block-white {
    padding: 16px;
  }
  .hero-form-title {
    font-size: 28px;
    line-height: 1.29;
  }
}

/* Video */

.video-section {
  z-index: 2;
}
.video-container {
}

.video-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 60px;
}
.video-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
  max-width: 1180px;
}

.video-block.presentation {
  display: none;
  margin-bottom: 60px;
}
.video-block.presentation.open {
  display: block;
}

.video-block {
  height: 768px;
  width: 100%;
  position: relative;
}
.video {
  width: 100%;
  height: 100%;
}

.custom-play-btn {
  display: none;
}

.custom-play-btn,
.unmute-btn {
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
}
.custom-play-btn svg,
.unmute-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: auto;
}

@media (max-width: 1100px) {
  .video-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .video-block {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .video-text-block {
    margin-bottom: 32px;
  }
  .video-title {
    font-size: 24px;
    line-height: 1.33;
  }
  .video-block {
    height: 350px;
  }
}

/* Why */

.why-section {
}
.why-container {
}
.why-title-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
  margin-bottom: 64px;
}
.why-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.why-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
  max-width: 643px;
}
.why-swiper {
  max-width: 1135px;
}
.why-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px;
}
.why-item {
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}
.why-item-icon {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: rgba(127, 53, 255, 0.1);
  margin-bottom: 16px;
}
.why-item-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.449px;
  margin-bottom: 8px;
}
.why-item-text {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
  max-width: 285px;
}

@media (max-width: 900px) {
  .why-subtitle {
    max-width: 100%;
  }
  .why-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}

@media (max-width: 768px) {
  .why-title-block {
    margin-bottom: 16px;
  }
  .why-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .why-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .why-wrapper {
    display: flex;
    gap: 0;
  }
  .why-item {
    max-width: 330px;
    width: 100%;
  }
}

/* Running */

.running-section {
}

.running-container {
}
.currency-block {
  padding: 16px 0;
  overflow: hidden;
  max-width: 1700px;
  position: relative;
}

.currency-block::before,
.currency-block::after {
  content: "";
  position: absolute;
  top: 0;
  width: 205px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.currency-block::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--black-color),
    rgba(255, 255, 255, 0)
  );
}

.currency-block::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--black-color),
    rgba(255, 255, 255, 0)
  );
}

.currency-list {
  display: flex;
  align-items: center;
  position: relative;
  gap: 29px;
}
.currency-list .currency-card {
  width: 330px;
  max-width: 330px;
  padding: 18px 20px;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}
.currency-list .currency-card-top-block {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(236, 241, 240, 0.1);
  margin-bottom: 17px;
}

.currency-list .currency-card-top-block div {
  gap: 16px;
}
.currency-list .currency-card-img {
  width: 56px;
  height: 56px;
}
.currency-list .currency-card-ticket {
  font-size: 20px;
  font-weight: 600;
}
.currency-list .currency-card-name {
  padding: 5px 7px;
  font-size: 11.25px;
  color: #1d1429;
  font-weight: 600;
  border-radius: 4.5px;
  background: #c6c6c6;
  line-height: normal;
}
.currency-list .btn-icon {
  width: 36px;
  height: 36px;
}
.currency-list .currency-card-bottom-block {
  align-items: center;
}
.currency-card-text-block {
}
.currency-list .currency-card-price {
  font-size: 27px;
  margin-bottom: 10px;
  font-weight: 500;
}
.currency-list .currency-card-percent {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.currency-list .currency-card-chart {
  height: 60px;
  width: 113px;
}

@media (max-width: 1100px) {
  .currency-block::before,
  .currency-block::after {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .currency-block::before,
  .currency-block::after {
    width: 50px;
  }
}

/* Expert */

.expert-section {
}
.expert-container {
}
.expert-title-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
  margin-bottom: 64px;
}
.expert-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.expert-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
  max-width: 1185px;
}

.expert-subtitle span {
  color: var(--white-color);
  font-weight: 700;
}
.expert-swiper {
  overflow: hidden;
  height: 100%;
  margin-bottom: 60px;
}
.expert-wrapper {
}
.expert-item {
  height: 324px;
  position: relative;
  border-radius: 14px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 485px;
}
.expert-item-img {
  height: 100%;
  border-radius: 14px;
}
.expert-item-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4.5px;
}
.expert-item-captio-title {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.449px;
}
.expert-item-captio-text {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
}
.expert-text {
  color: var(--white-color);
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
  margin-bottom: 60px;
}

.expert-btn {
  margin: 0 auto;
}

@media (max-width: 1100px) {
}

@media (max-width: 767px) {
  .expert-title-block {
    margin-bottom: 16px;
  }
  .expert-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .expert-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .expert-swiper {
    margin-bottom: 16px;
  }
  .expert-item {
    height: 314px;
    width: 100%;
  }
  .expert-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}

/* How */

.how-section {
  background: #0a0a0a;
}
.how-container {
  padding: 60px 120px;
}
.how-title-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
  margin-bottom: 64px;
}
.how-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.how-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.how-list {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}
.how-item {
  max-width: 346px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.how-item-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7f35ff 0%, #5a26b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.how-item-icon svg {
  width: 40px;
  height: 40px;
}
.how-item-icon-number {
  position: absolute;
  top: -6px;
  right: -9px;
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: var(--black-color);
}
.how-item-title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.how-item-text {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}

@media (max-width: 1500px) {
  .how-container {
    padding: 60px 40px;
  }
}

@media (max-width: 1100px) {
  .how-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .how-container {
    padding: 16px;
  }
  .how-title-block {
    margin-bottom: 32px;
  }
  .how-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .how-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Reviews */

.reviews-section {
  z-index: 2;
}
.reviews-container {
}
.reviews-title-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}
.reviews-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.reviews-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.reviews-swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
}
.reviews-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.reviews-item {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(225, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc((100% - 48px) / 4);
}
.reviews-autor {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-autor-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.reviews-autor-name-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.reviews-item-autor-name {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}
.reviews-item-place {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
}
.stars {
  display: flex;
  align-items: center;
  height: 16px;
  gap: 4px;
}

.reviews-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
  max-width: 304px;
}

@media (max-width: 1100px) {
  .reviews-wrapper {
    gap: 0;
  }
  .reviews-item {
    max-width: 378px;
    width: 100%;
  }
  .reviews-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .reviews-title-block {
    margin-bottom: 16px;
  }
  .reviews-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .reviews-swiper {
    margin-bottom: 32px;
  }
  .reviews-item {
    max-width: 100%;
  }
}

/* About */

.about-section {
}

.about-container {
  padding-bottom: 60px;
}
.about-title {
  color: #b6b6b6;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.312px;
  margin-bottom: 32px;
}
.about-running {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 88px;
}
.about-running-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.about-running-list.clone {
  display: none;
}
.about-running-item {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.about-stat-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.about-stat-item {
  width: 259px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-stat-item-number {
  color: var(--accent-color);
  font-size: 36px;
  line-height: 1.11;
  letter-spacing: 0.369px;
}
.about-stat-item-text {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}

@media (max-width: 1100px) {
  .about-container {
    overflow: hidden;
  }
  .about-running {
    display: flex;
    animation: marquee 20s linear infinite;
  }
  .about-running-list {
    flex-shrink: 0;
  }
  .about-running-list.clone {
    display: flex;
  }
  .about-running-item {
    white-space: nowrap;
    opacity: 0.4;
  }
  .about-stat-item {
    width: 148px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .about-container {
    padding-bottom: 32px;
  }
  .about-running {
    margin-bottom: 60px;
  }
  .about-stat-list {
    flex-direction: column;
    gap: 16px;
  }
  .about-stat-item {
    width: 100%;
  }
}

/* Structure */

.structure-section {
  z-index: 2;
  background: #0a0a0a;
}
.structure-container {
  padding: 60px 120px;
}
.structure-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
.structure-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.structure-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.structure-list {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 24px;
  margin-bottom: 24px;
}
.structure-item {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}
.structure-item:hover {
  background: linear-gradient(
      to bottom right,
      #000 0%,
      #22155c 20%,
      #3f259d 60%,
      #704ae7 75%,
      #c6b8f6 100%
    )
    bottom right no-repeat;
}

.structure-item-img {
  height: 320px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}
.structure-item-number {
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
  padding: 4px 10px;
  position: absolute;
  top: 44px;
  left: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
}
.structure-item-title {
  color: var(--white-color);
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.07px;
  margin-bottom: 16px;
}
.structure-item-list {
  color: var(--second-white-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.structure-item-list-dot {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.structure-item-list-dot svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(127, 53, 255, 0.2);
}

.structure-item-tegs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.structure-item-teg {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(225, 227, 228, 0.1);
  background: #0d0d0d;
  color: var(--second-white-color);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.064px;
}

.structure-bonus-list {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.structure-bonus-item {
  width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(127, 53, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(127, 53, 255, 0.1) 0%,
    rgba(127, 53, 255, 0.05) 100%
  );
}
.structure-bonus-icon {
  font-size: 30px;
  line-height: 1.2;
}
.structure-bonus-item-title {
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: -0.439px;
}
.structure-bonus-item-text {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
  max-width: 265px;
}

.icon-check {
  flex-shrink: 0;
}

@media (max-width: 1500px) {
  .structure-container {
    padding: 60px 40px;
  }
}

@media (max-width: 1100px) {
  .structure-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .structure-bonus-list {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .structure-container {
    padding: 32px 16px;
  }
  .structure-title-block {
    margin-bottom: 16px;
  }
  .structure-title {
    font-size: 20px;
  }
  .structure-subtitle {
    font-size: 10px;
  }
  .structure-item {
    padding: 16px;
  }
  .structure-item-number {
    top: 28px;
    left: 28px;
  }
  .structure-bonus-list {
    margin-top: 16px;
    gap: 16px;
  }
  .structure-bonus-item {
    width: 100%;
  }
  .structure-item-list-dot {
    align-items: center;
  }
}

/* Students */

.students-section {
}
.students-container {
  padding: 60px 120px;
}
.students-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
.students-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.students-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
  max-width: 645px;
}
.students-swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
}
.students-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 32px;
}
.students-item {
  width: calc((100% - 64px) / 3);
  padding: 16px;
}
.students-item-img-wrapper {
  margin-bottom: 24px;
  position: relative;
}

.students-item-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 40%
  );
  z-index: 2;
  pointer-events: none;
}

.students-item-img {
  border-radius: 14px;
  height: 456px;

  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 60%
  );
}
.students-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 5;
}
.students-item-info-name {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.students-item-info-position {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
}
.students-item-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.students-item-progress-number {
  color: var(--accent-color);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.352px;
}
.students-item-progress-period {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.students-item-text {
  text-align: left;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: -0.439px;
  margin-bottom: 16px;
}
.students-item-param-list {
  display: flex;
  gap: 16px;
  align-items: center;
}
.students-item-param-item {
  width: calc((100% - 32px) / 3);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(127, 53, 255, 0.1);
  background: rgba(127, 53, 255, 0.05);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}
.students-item-param-text {
  color: #b6b6b6;
  font-size: 12px;
  line-height: 1.33;
}
.students-item-param-number {
  color: var(--white-color);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}

.students-progress-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.students-progress-item {
  width: calc((100% - 32px) / 3);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(127, 53, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(127, 53, 255, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.students-progress-item-icon {
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(127, 53, 255, 0.1);
}
.students-progress-item-number {
  color: var(--white-color);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.396px;
}
.students-progress-item-text {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}

@media (max-width: 1500px) {
  .students-container {
    padding: 60px 40px;
  }
}

@media (max-width: 1100px) {
  .students-wrapper {
    gap: 0;
  }
  .students-item {
    max-width: 520px;
    width: 100%;
  }
  .students-progress-list {
    flex-direction: column;
  }
  .students-progress-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .students-container {
    padding: 16px;
  }
  .students-title-block {
    margin-bottom: 16px;
  }
  .students-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .students-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .students-swiper {
    margin-bottom: 16px;
  }
  .students-item {
    max-width: 100%;
  }
  .students-item-img {
    height: 263px;
  }
  .students-item-param-list {
    flex-direction: column;
  }
  .students-item-param-item {
    width: 100%;
    align-items: center;
  }
}

/* Ready */

.ready-section {
  background: #0a0a0a;
  z-index: 2;
  position: relative;
}

.ready-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: 37%;
  top: 0;
  border-radius: 16777200px;
  background: var(--accent-color);
  mix-blend-mode: screen;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.ready-container {
  padding: 60px 120px;
}
.ready-block {
  padding: 49px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 26px;
  border-radius: 24px;
  border: 1px solid rgba(127, 53, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(127, 53, 255, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  max-width: 900px;
}
.ready-pretitle {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 16777200px;
  background: rgba(127, 53, 255, 0.2);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}
.ready-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.ready-text {
  color: #b6b6b6;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
  max-width: 590px;
}
.ready-timer-text {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
}
.ready-timer-text span {
  color: var(--white-color);
}
.ready-list {
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.ready-item {
  width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.ready-item-number {
  color: var(--accent-color);
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.07px;
}
.ready-item-number-img {
  width: 23px;
  object-fit: cover;
  margin: 11px auto;
}
.ready-item-text {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
}

@media (max-width: 1500px) {
  .ready-container {
    padding: 60px 40px;
  }
}

@media (max-width: 767px) {
  .ready-container {
    padding: 16px;
    border-radius: 24px;
  }
  .ready-block {
    padding: 16px;
    gap: 16px;
  }
  .ready-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .ready-text {
    font-size: 16px;
    line-height: 1.5;
  }
  .ready-list {
    flex-direction: column;
    gap: 12px;
  }
  .ready-item {
    width: 100%;
  }
  .ready-section::before {
    content: none;
  }
  .ready-item-number-img {
    margin: 8px auto;
  }
}

/* FAQ */

.faq-section {
  z-index: 2;
}
.faq-container {
  padding: 60px 120px;
}
.faq-title-block {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  margin-bottom: 64px;
}
.faq-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.faq-subtitle {
  color: #b6b6b6;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 64px;
}
.faq__container {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}
.faq__container.show {
}
.faq__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.faq__question {
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: -0.439px;
}
.faq__dropdown {
  overflow: hidden;
}
.faq__dropdown-content {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  text-align: left;
  transition: all 0.5s ease-in-out;
}

.faq__dropdown-content ul {
  list-style-type: disc;
  margin: 10px 0 0 20px;
  padding: 0;
}

.faq__dropdown-content p,
.faq__dropdown-content li {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: -0.312px;
}

.faq__dropdown-content.show {
  max-height: 600px;
  padding-top: 24px;
}
.faq__toggle-btn {
  display: flex;
  justify-content: center;
  background-color: transparent;
  width: 20px;
  height: 20px;
}
.faq__toggle-btn svg {
  fill: #e1e3e4;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.faq__toggle-btn.show > svg {
  transform: rotate(-45deg);
  transition: all 0.5s ease-in-out;
}

.faq-add-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-text {
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}
.faq-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-color);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}

@media (max-width: 1500px) {
  .faq-container {
    padding: 60px 40px;
  }
}

@media (max-width: 767px) {
  .faq-container {
    padding: 16px;
  }
  .faq-title-block {
    margin-bottom: 32px;
  }
  .faq-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .faq-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .faq__wrapper {
    margin-bottom: 24px;
  }
  .faq__container {
    padding: 16px;
  }
  .faq__btn-wrapper {
    gap: 8px;
  }
}

/* Bottom */

.bottom-section {
  z-index: 2;
  position: relative;
  background: #0a0a0a;
}

.bottom-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: 20%;
  top: 0;
  border-radius: 16777200px;
  background: var(--accent-color);
  mix-blend-mode: screen;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.bottom-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: 20%;
  bottom: 20%;
  border-radius: 16777200px;
  background: var(--accent-color);
  mix-blend-mode: screen;
  filter: blur(120px);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.bottom-container {
  position: relative;
  padding: 60px 120px;
}

.bottom-block {
  max-width: 760px;
  width: 100%;
  padding: 48px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
  border-radius: 24px;
  background: #000;
  border: 4px solid var(--accent-color);
  margin-bottom: 48px;
}
.bottom-title-block {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 16px;
}
.bottom-title {
  max-width: 610px;
  color: var(--white-color);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.352px;
}
.bottom-subtitle {
  max-width: 630px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.449px;
}
.bottom-form {
}
.bottom-form-input {
  padding: 18.5px 24px;
}
button.bottom-form-btn.submit_btn {
  padding: 15.5px 32px;
  justify-content: space-between;
}
.bottom-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b6b6b6;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.15px;
}
.bottom-checkbox svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--white-color);
}

.bottom-bonus-list {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 24px;
  max-width: 760px;
}
.bottom-bonus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: calc((100% - 48px) / 3);
}
.bottom-bonus-icon {
  color: var(--accent-color);
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.07px;
}
.bottom-bonus-text {
  color: #b6b6b6;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.15px;
}
@media (max-width: 1500px) {
  .bottom-container {
    padding: 60px 40px;
  }
}

@media (max-width: 1100px) {
}

@media (max-width: 767px) {
  .bottom-section {
    overflow: hidden;
  }
  .bottom-section::before {
    content: none;
  }
  .bottom-container {
    padding: 16px;
  }
  .bottom-block {
    padding: 16px;
    gap: 24px;
  }
  .bottom-title {
    font-size: 32px;
    line-height: 1.5;
  }
  .bottom-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  button.bottom-form-btn.submit_btn {
    padding: 16px 14px;
    padding-left: 32px;
  }
  .bottom-bonus-list {
    flex-direction: column;
    gap: 3px;
  }
  .bottom-bonus-item {
    width: 100%;
  }
}

/* Footer */

footer {
  background: #0a0a0a;
}
.footer-container {
  z-index: 2;
  padding: 49px 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}
.page-footer-text {
  display: block;
  color: #b6b6b6;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.312px;
}

@media (max-width: 1500px) {
  .footer-container {
    padding: 49px 40px;
  }
}

@media (max-width: 1100px) {
  a.page-footer-text {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -0.15px;
  }
}

@media (max-width: 767px) {
  .footer-container {
    padding: 49px 16px;
  }
}

.accent {
  color: var(--accent-color);
}
