* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #d5dbe6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1232px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  padding: 60px 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .label,
.hero-policy .label {
  border-radius: 16px;
  background: #04070d;
  box-shadow: 0 1px 1px 0.8px rgba(59, 100, 242, 0.37), 0 2px 2px -1.5px rgba(59, 100, 242, 0.36),
    0 4px 4px -2px rgba(59, 100, 242, 0.34), 0 8px 8px -3px rgba(59, 100, 242, 0.31),
    0 16px 16px -4px rgba(59, 100, 242, 0.24), 0 30px 30px -4px rgba(59, 100, 242, 0.1);
  padding: 10px;
  margin-bottom: 60px;
}

.hero .label .inner,
.hero-policy .label .inner {
  border-radius: 10px;
  background: #04070d;
  box-shadow: 0 0.796px 0.796px -0.875px rgba(59, 100, 242, 0.48),
    0 2.415px 2.415px -1.75px rgba(59, 100, 242, 0.46),
    0 6.383px 6.383px -2.625px rgba(59, 100, 242, 0.4), 0 20px 20px -3.5px rgba(59, 100, 242, 0.21);
  padding: 16px;
}

.built {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.built .dot {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #3b64f2;
  box-shadow: 0 0 20px 0 rgba(168, 209, 255, 0.5);
}

.built p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.title {
  text-align: center;
}

/* ТІНЬ (позаду) */
.title-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;

  color: rgba(4, 7, 13, 0.8);
  filter: blur(6px);
}

.title {
  position: relative;
}

.title-text {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;

  background: #d5dbe6;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.free {
  color: #3b64f2;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin-bottom: 40px;
}

.sub {
  margin-bottom: 60px;
}

/* .download-btn {
  padding: 2px;

  border-radius: 8px;
  background: radial-gradient(50% 25% at 50% 100%, #3b64f2 0%, rgba(59, 100, 242, 0) 100%),
    rgba(255, 255, 255, 0.05);

  margin-bottom: 20px;
  position: relative;
  width: fit-content;
  transition: all 0.2s ease;
}

.download-btn .inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px;
  border-radius: 8px;
  background: #04070d;
} */

.download-btn {
  display: inline-block;
  padding: 2px;
  border-radius: 8px;
  width: fit-content;
  text-decoration: none;

  background: radial-gradient(50% 25% at 50% 100%, #3b64f2 0%, rgba(59, 100, 242, 0) 100%),
    rgba(255, 255, 255, 0.05);

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.download-btn .inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px;
  border-radius: 8px;
  background: #04070d;
}

.download-btn:hover,
.load-btn:hover {
  box-shadow: 0 8px 24px rgba(59, 100, 242, 0.35), 0 0 0 1px rgba(59, 100, 242, 0.25);
  transform: translateY(-1px);
}

.download-btn:active {
  box-shadow: 0 4px 14px rgba(59, 100, 242, 0.25);
  transform: translateY(0);
}

.download-btn span {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  letter-spacing: -0.16px;
  text-transform: uppercase;
}

.hero .download-btn {
  margin-bottom: 20px;
}

.hero-info {
  color: #d5dbe6;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.hero {
  position: relative;
  width: 100%;
  background: #04070d;
  /* height: 100vh; */
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: radial-gradient(64% 75% at 50% 50%, rgba(4, 7, 13, 0) 17.57%, #04070d 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}

.why {
  background: #04070d;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

section::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;

  background: radial-gradient(50% 50% at 50% 50%, rgba(216, 231, 242, 0.07) 0%, #04070d 100%);
}

.why::before,
.trade::before,
.analysis::before,
.steps::before,
.signals::before,
.reviews::before,
.comparison::before,
.faq::before,
.install::before,
.hero-policy::before,
.content::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -300px;

  width: 793px;
  height: 499px;

  transform: translateX(-50%) rotate(-13deg);

  border-radius: 10px;
  opacity: 0.1;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(213, 219, 230, 0.7) 0%,
    rgba(213, 219, 230, 0) 100%
  );
  overflow: hidden;
  z-index: -1;
}

.hero-policy::before,
.content::before {
  z-index: 3;
}

.why .container,
.trade .container,
.analysis .container,
.steps .container,
.reviews .container,
.comparison .container,
.faq .container,
.install .container,
.hero-policy .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 60px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  padding: 6px 12px;
  margin-bottom: 20px;
}

.label span {
  color: #d5dbe6;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

h2 {
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 118.182% */

  background: linear-gradient(98deg, #d5dbe6 51.66%, #04070d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 20px;
}

.subtitle {
  max-width: 640px;
  margin-bottom: 44px;
  text-align: center;
}

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

.why .wrapper .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
  padding: 32px;

  width: 33%;
}

.why .item .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  position: relative;

  border-radius: 8px;
  background: #04070d;
  box-shadow: 0 1px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.why .item .img-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;

  background: radial-gradient(
    50% 50% at 93.7% 8.1%,
    rgba(184, 199, 217, 0.5) 0%,
    rgba(184, 199, 217, 0) 100%
  );
  opacity: 0.1;
}

.why .item .wrap {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 8px;
  background: #10131c;
  box-shadow: 0 1px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.why .item .title {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
  margin-bottom: 10px;
}

.why .item .text {
  color: rgba(213, 219, 230, 0.6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.trade {
  padding: 120px 0;
  background: #04070d;
  position: relative;
  z-index: 3;
}
.trade h2 {
  margin-bottom: 44px;
}

.trade .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
  margin-bottom: 44px;
}

.trade .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  padding: 32px;

  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
  text-align: left;
}

.trade .wrapper img {
  border-radius: 8px;
}

.trade .wrapper .img-wrap {
  border-radius: 8px;
  background: #04070d;
  box-shadow: 0 1px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.trade .download-btn {
  margin-bottom: 0;
}

.trade .download-btn .inner {
  padding: 12px 32px;
}

.analysis {
  padding: 120px 0;
  background: #04070d;
  position: relative;
  z-index: 4;
}

.analysis .wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.analysis .item {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  text-align: left;

  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.analysis .item .img-wrap {
  border-radius: 8px;
  background: #04070d;
  box-shadow: 0 1px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.analysis .item .title {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
  margin-bottom: 20px;
}

.analysis .item ul,
.signals ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.analysis .item ul li,
.signals ul li {
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.analysis .item ul li::before,
.signals ul li::before {
  content: url("./img/icon-star.svg");
  position: absolute;
  left: 0;
}

.analysis .wrapper .bottom {
  display: flex;
  gap: 30px;
}

.analysis .wrapper .bottom .item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.steps {
  padding: 120px;
  background: #04070d;
  position: relative;
  z-index: 5;
}

.steps h2 {
  margin-bottom: 60px;
}

.steps .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.steps .item {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.steps .item .num {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 12px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  background: #10131c;
  box-shadow: 0 1px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.steps .item .num span {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
}

.steps .item .text {
  color: rgba(213, 219, 230, 0.6);
}

.steps .setup {
  display: flex;
  padding: 5px 12px 6px 12px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  background: #10131c;
}

.setup p {
  color: #d5dbe6;
  text-align: center;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.signals {
  padding: 120px 0;
  background: #04070d;
  position: relative;
  z-index: 6;
}

.signals .wrapper {
  display: flex;
  gap: 80px;
}

.signals .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signals h2 {
  text-align: left;
  margin-bottom: 40px;
}

.signals .crypto {
  text-align: left;
  margin-bottom: 20px;
}

.signals ul {
  margin-bottom: 20px;
}

.signals .signal {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 40px;
  text-align: left;
}

.signals .download-btn .inner {
  padding: 12px 26px;
}

.signals .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;

  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.reviews {
  padding: 120px 0;
  background: #04070d;
  position: relative;
  z-index: 6;
}

.reviews h2 {
  margin-bottom: 60px;
}

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

.reviews .item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  text-align: left;
}

.reviews .item .top {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;

  border-radius: 16px;
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset,
    0 -1px 1px 0 rgba(207, 231, 255, 0.1) inset;
}

.reviews .avatar {
  display: flex;
  padding: 4px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 1px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.reviews .avatar img {
  border-radius: 8px;
}

.reviews .top .name {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
}

.reviews .top .position {
  color: rgba(213, 219, 230, 0.6);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.reviews .bottom {
  padding: 25px;
}

.comparison {
  padding: 120px 0;
  background: #04070d;
  position: relative;
  z-index: 7;
}

.comparison h2 {
  margin-bottom: 44px;
}

.comparison .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
  width: 100%;
}

.comparison .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 50%;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 20px;
}

.logo-wrap span {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 120% */
}

.logo-comp {
  max-width: 130px;
}

.comparison .item .info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
  width: 100%;
}

.comparison .download-btn .inner {
  padding: 12px 26px;
}

.faq {
  padding: 120px 0;
  background: #04070d;
  position: relative;
  z-index: 8;
}

.faq h2 {
  margin-bottom: 44px;
}

.faq .container {
  max-width: 620px;
}

/* accordion */

.accordion {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 99;
}

.acc-item {
  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.acc-btn {
  width: 100%;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.acc-title {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
}

.acc-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
  transition: transform 0.25s ease;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.acc-icon::after {
  transform: rotate(90deg);
}

.acc-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.acc-content {
  padding: 0 32px 32px;
  text-align: left;
  color: #d5dbe6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  line-height: 1.5;
}

.acc-item.is-open .acc-icon {
  transform: rotate(45deg);
}

.install {
  position: relative;
  padding: 180px 0;
  z-index: 9;
  overflow: hidden;
  background: #04070d;
}

.install::before {
  z-index: 2;
}

.install-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.install::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(180deg, #04070d 38.48%, rgba(4, 7, 13, 0) 100%);
}

/* КОНТЕНТ ПОВЕРХ УСЬОГО */
.install .container {
  position: relative;
  z-index: 3;
}

.install .fast {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.install .fast span {
  color: #d5dbe6;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 25.6px; /* 160% */
  letter-spacing: -0.32px;
}

.install .fast .line {
  width: 69px;
  height: 1px;
  opacity: 0.5;
  background: linear-gradient(90deg, #04070d 0%, #fff 100%);
}

.install .fast .line-2 {
  background: linear-gradient(270deg, #04070d 0%, #fff 100%);
}

.install .title-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(4, 7, 13, 0.8);
  filter: blur(6px);
}

.install .title-text {
  position: relative;
  z-index: 2;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;

  /* background: #d5dbe6;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; */

  /* background: radial-gradient(86% 99% at 50% 50%, #d5dbe6 28.39%, #04070d 100%); */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.install .title {
  margin-bottom: 60px;
}

.install .download-btn {
  margin-bottom: 0;
}

.install .download-btn span {
  text-transform: none;
}

.install .download-btn .inner {
  padding: 12px 26px;
}

.install::before {
  opacity: 0.2;
}

footer {
  padding: 60px 0;
  background: #04070d;
  position: relative;
  z-index: 9;
}

footer .container {
  display: flex;
  flex-direction: column;
}
.devider {
  width: 100%;
  height: 1px;
  background: rgba(216, 231, 242, 0.07);
  margin: 32px 0;
}

footer .top {
  display: flex;
  justify-content: space-between;
}

footer .top .logo-wrapper {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 40px;
}

.logo-wrapper p {
  color: #d5dbe6;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
}

footer .top .link-wrapper {
  max-width: 720px;
}

.load-btn {
  padding: 2px;
  display: flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.load-btn .inner {
  padding: 14px 28px;
  border-radius: 8px;
  background: #04070d;
  color: #fff;
}

.link-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 110px;
}

.link-wrapper .col-1 {
  max-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.link-wrapper .title {
  color: #d5dbe6;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  text-transform: uppercase;
}

.link-wrapper ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-wrapper .title {
  text-align: left;
  font-size: 14px;
}

.link-wrapper a {
  color: #fff;
  font-size: 14px;
}

.col-2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.col-2 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
}

.col-3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

footer .contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .link-wrapper a {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding-bottom: 4px;
}

/* лінія */
footer .link-wrapper a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* hover */
footer .link-wrapper a:hover::after {
  transform: scaleX(1);
}

footer .bottom {
  display: flex;
  justify-content: space-between;
}

footer .bottom p {
  font-size: 14px;
}

.hero-policy {
  padding: 120px 0;
  position: relative;
  background: #04070d;
}

.policy .subt {
  color: #d5dbe6;
}

.content .container {
  max-width: 952px;
}

.content {
  padding: 120px 0;
  position: relative;
  background: #04070d;
  z-index: 4;
}
.content .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(216, 231, 242, 0.07);
  background: #04070d;
  box-shadow: 0 2px 1px 0 rgba(207, 231, 255, 0.2) inset;
}

.content .item .title {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
  text-align: left;
}

.content a {
  color: #3b64f2;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.analysis h2 {
  margin-bottom: 44px;
}

.img-wrap.mobile {
  display: none;
}

.col-3.mobile {
  display: none;
}

@media (max-width: 768px) {
  .desk {
    display: none !important;
  }
  .built .dot {
    display: none;
  }

  .hero .label .inner,
  .hero-policy .label .inner {
    padding: 8px;
  }

  .title-shadow {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(4, 7, 13, 0.8);
    filter: blur(6px);
  }

  .title-text {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    background: #d5dbe6;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .bg-video {
    position: absolute;
    top: 76%;
    left: 50%;
    width: 100%;
    height: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .sub {
    margin-bottom: 20px;
  }

  .hero .title {
    margin-bottom: 20px;
  }

  .why {
    padding: 60px 0;
  }

  h2 {
    font-size: 32px;
    line-height: 38px;
  }

  h2 br {
    display: none;
  }

  section {
    overflow: hidden;
    padding: 60px 0 !important;
  }

  .why .wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .why .wrapper .item {
    width: 100%;
    padding: 24px;
  }

  .why .item .img-wrap {
    padding: 24px;
  }

  .trade .wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
  }

  .trade .item {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    text-align: center;
  }

  .analysis .item {
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .analysis .wrapper .bottom {
    flex-direction: column;
    gap: 30px;
  }

  .analysis .wrapper .bottom .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .analysis img {
    width: 100%;
  }

  .steps .wrapper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .steps .item {
    width: 100%;
    text-align: center;
  }

  .signals .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  img {
    max-width: 100%;
  }

  .signals .info {
    align-items: center;
  }

  .mobile {
    display: block;
  }

  .signals .img-wrap {
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  .signals .img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .reviews .wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .comparison .wrapper {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 44px;
    width: 100%;
  }

  .comparison .item {
    width: 100%;
  }

  .comparison .item .info {
    padding: 20px;
    text-align: center;
  }

  .acc-btn {
    padding: 20px;
  }

  .acc-content {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .acc-title {
    font-size: 18px;
    line-height: 22px;
  }

  .acc-icon {
    width: 12px;
    height: 12px;
    position: relative;
    flex: 0 0 12px;
    transition: transform 0.25s ease;
  }

  .acc-icon::before,
  .acc-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .install .fast span {
    color: #d5dbe6;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
    text-align: center;
  }

  .install .title {
    margin-bottom: 40px;
  }

  .install .title-shadow {
    font-size: 28px;
  }

  .install .title-shadow br {
    display: none;
  }

  .install .title-text {
    font-size: 28px;
  }

  .install .title-text br {
    display: none;
  }

  footer {
    padding: 40px 0;
  }

  footer .top {
    flex-direction: column;
    gap: 30px;
  }

  footer .top .logo-wrapper {
    gap: 20px;
  }

  .link-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
  }

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

  .col-3.mobile {
    display: flex;
    gap: 20px;
  }

  .col-3.mobile .title {
    text-align: left;
  }

  .devider {
    margin: 20px 0;
  }

  footer .bottom {
    flex-direction: column;
    gap: 20px;
  }

  .content .item {
    padding: 20px;
  }

  .content .item .title {
    font-size: 18px;
  }
}
