/* Thin (100) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* Extra Light (200) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* Light (300) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Regular (400) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Semi Bold (600) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Extra Bold (800) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black (900) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #060606;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}
header img,
header .empty {
  flex: 1;
  max-width: 134px;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  justify-content: center;
}
header nav ul li {
  padding-inline: 12px;
}
header nav ul li a {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  line-height: 14px;
}
.hero-info h1 {
  color: #f5f7fa;
  text-align: center;
  font-family: Inter;
  font-size: 60px;
  font-weight: 800;
  width: 100%;
  max-width: 904px;
  margin-inline: auto;
  margin-bottom: 30px;
  margin-top: 44px;
  span {
    background: linear-gradient(
      90deg,
      #bd5dbf 0%,
      #97cfff 57.55%,
      #2964ab 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.hero-info p {
  width: 100%;
  max-width: 668px;
  color: #9ca3af;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  margin-inline: auto;
  margin-bottom: 60px;
}
.button {
  text-decoration: none;
  padding: 30px 80px;
  max-width: fit-content;
  border-radius: 155px;
  background: linear-gradient(90deg, #bd5dbf 0%, #97cfff 57.55%, #2964ab 100%);
  box-shadow: 0 4px 29.7px 0 rgba(120, 48, 148, 0.6);
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-inline: auto;
  margin-bottom: 372px;
}
h2 {
  color: #f5f7fa;
  font-family: Inter;
  font-size: 40px;
  font-weight: 800;
  span {
    background: linear-gradient(
      90deg,
      #bd5dbf 0%,
      #97cfff 57.55%,
      #2964ab 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
main {
  position: relative;
}
.about {
  position: relative;
  padding-top: 14%;
  padding-bottom: 75px;
  background-color: #0f1115;
}
.about img {
  top: 0;
  transform: translateY(-50%);
  position: absolute;

  right: 0;
  width: 100vw;
  object-fit: contain;
}
.about .content-text {
  margin-top: 40px;
  max-width: 744px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  p {
    color: #9ca3af;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
  }
}
.approach-block {
  padding-block: 75px 150px;
  background-color: #0f1115;
}
.approach-block h2 {
  text-align: center;
  margin-bottom: 80px;
}
.approach-block .cards-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 4px 24.6px 0 #4e004f;
}
.approach-block .cards-list .card {
  grid-column: span 1;
  border: 1px solid #bd5dbf;
  padding: 40px 40px 50px 40px;
  min-height: 332px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  h3 {
    background: linear-gradient(
      90deg,
      #bd5dbf 0%,
      #97cfff 57.55%,
      #2964ab 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: Inter;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
  }
  p {
    opacity: 0;
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    z-index: 2;
    position: relative;
    transition: opacity 0.3s ease;
  }
  .dark-bg {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
  }
}
.approach-block .cards-list .card:hover .dark-bg {
  opacity: 1;
}
.approach-block .cards-list .card:hover p {
  opacity: 1;
}
.approach-block .cards-list .card:nth-child(1) {
  border-radius: 10px 0 0 10px;
  background-image: url("/img/smarter-card-1.png");
}
.approach-block .cards-list .card:nth-child(2) {
  background-image: url("/img/smarter-card-2.png");
}
.approach-block .cards-list .card:nth-child(3) {
  background-image: url("/img/smarter-card-3.png");
}
.approach-block .cards-list .card:nth-child(4) {
  border-radius: 0 10px 10px 0;
  background-image: url("/img/smarter-card-4.png");
}
.trusted {
  padding-block: 150px;
  h2 {
    text-align: center;
    margin-bottom: 40px;
  }
}
.trusted-info p {
  color: #9ca3af;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  max-width: 630px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.trusted-statistics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-direction: column;
}
.trusted .stat-block-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.trusted .statistic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  h3 {
    background: linear-gradient(
      90deg,
      #bd5dbf 0%,
      #97cfff 57.55%,
      #2964ab 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: Inter;
    font-size: 60px;
    font-weight: 800;
  }
  p {
    color: #9ca3af;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
  }
}
.performance h2 {
  max-width: 630px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.addition-info-bloks {
  background-color: #0f1115;
  padding-block: 80px;
}
.addition-info-bloks .button {
  margin-bottom: 0;
  margin-inline: 0 !important;
  max-width: 410px !important;
  width: 100%;
}
.addition-info-bloks h2 {
  margin-bottom: 60px;
}
.why-private {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
  margin-bottom: 106px;
  img {
    grid-column: span 1;
    width: 100%;
  }
}
.advantages-list {
  display: flex;
  flex-direction: column;
  grid-column: span 1;
  gap: 30px;
  .line {
    background: linear-gradient(90deg, #575757 0%, #0f1115 100%);
    height: 1px;
  }
}
.private-adv-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  h3 {
    color: #f5f7fa;
    font-family: Inter;
    font-size: 25px;
    font-weight: 800;
  }
  p {
    color: #9ca3af;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
  }
}
.ai-inv-system {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  img {
    grid-column: span 1;
    width: 100%;
  }
  gap: 50px;
  align-items: center;
  h2 {
    margin-bottom: 40px;
  }
  p {
    color: #9ca3af;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
  }
  ul {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }
  li {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
footer {
  padding-block: 80px;
  background: #0f1115;
  .all-rights {
    color: #585859;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
  }
}
footer .container {
  display: flex;
  gap: 136px;
}
footer .left-part {
  display: flex;
  flex-direction: column;
  gap: 28px;
  img {
    max-width: 134px;
  }
  .descr {
    color: #9ca3af;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
  }
}
footer .right-part p {
  background: linear-gradient(90deg, #bd5dbf 0%, #97cfff 57.55%, #2964ab 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
}
footer .right-part nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  a {
    text-decoration: none;
    color: #9ca3af;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
  }
}
.join-block {
  padding-block: 150px;
  h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  p {
    max-width: 740px;
    width: 100%;
    color: #9ca3af;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    margin-inline: auto;
    margin-bottom: 70px;
  }
}
.form-block {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  img {
    grid-column: span 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .form-wrapper {
    grid-column: span 1;
  }
}
.form-block {
  width: 100%;
}
.faq-block {
  background: #0f1115;
  padding-block: 80px;
  h2 {
    text-align: center;
    margin-bottom: 70px;
  }
}
.accordion {
  max-width: 846px;
  margin-inline: auto;
}
.trusted-statistics svg {
  width: 100%;
}
.mobile {
  display: none;
}
@media (max-width: 1282px) {
  .container {
    padding-inline: 30px;
  }
}
@media (max-width: 1000px) {
  .button {
    margin-bottom: 200px;
  }
  .about {
    padding-top: 20%;
  }
}
@media (max-width: 900px) {
  header {
    justify-content: space-between;
  }
  header .empty {
    display: none;
  }
  .hero-info h1 {
    margin-top: 50px;
  }
  .approach-block {
    padding-block: 60px 120px;
  }
  .about {
    position: relative;
    padding-bottom: 60px;
    padding-top: 24%;
  }
  .approach-block .cards-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    .card {
      min-height: 332px;
      border-radius: 10px !important;
    }
  }
  .trusted {
    padding-block: 120px;
  }
  .trusted-info p {
    margin-bottom: 50px;
  }
  .why-private {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    width: 100%;
    align-items: start;
    margin-bottom: 80px;
    img {
      width: 100%;
    }
  }
  .advantages-list {
    width: 100%;
  }
  .ai-inv-system {
    display: flex;
    flex-direction: column-reverse;
  }
  .join-block {
    padding-block: 120px;
  }
  .join-block img {
    display: none;
  }
  footer {
    padding-block: 50px;
  }
  footer .container {
    flex-direction: column;
    gap: 38px;
  }
  .form-block {
    grid-template-columns: repeat(1, 1fr);
  }
  .approach-block .cards-list {
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 20px;
  }
  header {
    flex-direction: column;
  }
  header nav ul li {
    padding-block: 30px;
  }
  .hero-info h1 {
    margin-top: 32px;
    font-size: 35px;
  }
  .hero-info p {
    margin-bottom: 40px;
  }
  .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 0px;
  }
  h2 {
    font-size: 30px;
  }
  .about h2 {
    max-width: 300px;
  }
  .about {
    padding-bottom: 42px;
  }
  .about .content-text {
    margin-top: 30px;
  }
  .approach-block {
    padding-block: 42px 60px;
  }
  .approach-block h2 {
    margin-bottom: 30px;
  }
  .approach-block .cards-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .button {
    margin-bottom: 160px;
  }
  .trusted {
    padding-block: 90px;
  }
  .trusted h2 {
    margin-bottom: 30px;
  }

  .trusted .stat-block-list {
    gap: 40px;
  }
  .addition-info-bloks {
    padding-block: 60px;
  }
  .why-private {
    margin-bottom: 60px;
  }
  .addition-info-bloks h2 {
    margin-bottom: 30px;
  }
  .faq-block {
    padding-block: 60px;
  }
  .faq-block h2 {
    margin-bottom: 10px;
  }
  .accordion__item {
    padding-block: 25px;
  }
  .join-block {
    padding-block: 90px;
    p {
      margin-bottom: 50px;
    }
  }
  footer .right-part nav {
    flex-direction: column;
    align-items: start;
  }
  .mobile {
    display: block;
  }
  .desktop-tablet {
    display: none;
  }
}
