:root {
  --wrap: 1200px;

  --bg-bt: #20CB11;
  --bg-bt-n: #20CB11;
  --bg-bt2: #20CB11;
  --bg-bt3: #18A70C;
  --bg-bright: #fff2d5;
  --dark-brown: #CAC3FF;
  --bg2: #FFFFFF;
  --text-n: #fff;
  --tx2: #BCBCBC;
  --w: #ffffff;

  --dark: #070a18;

  --shadowDark: 0 18px 50px rgba(0, 0, 0, 0.25);

  --lt-line: rgba(255, 255, 255, 0.14);
  --lt-line2: rgba(255, 255, 255, 0.1);
  --lt-text: rgba(255, 255, 255, 0.92);
  --r: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Google Sans", sans-serif;
  background: #212121!important;
}

body {
  margin: 0;

  color: var(--text-n);
  background: var(--w);
  overflow-x: hidden;

  font-style: normal;
  font-size: 18px;
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  margin: 0px;
}

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0px;
}

p {
  margin: 0px;
  font-weight: 400;
}

.wrap {
  width: min(var(--wrap), calc(100% - 30px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pg-top {
  padding-top: 80px;
}

.pg-bottom {
  padding-bottom: 80px;
}

.mg-top {
  margin-top: 90px;
}

/* ===== overlay (pixel check) ===== */
.overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.overlay.on {
  opacity: 0.35;
}

.overlay img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== topbar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #181818;
}


.topbar.bg {
  
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  gap: 16px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.4px;
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.menu {
  display: flex;
  gap: 40px;
  margin-right: 40px;
}

.menu a {
  font-size: 18px;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.8);
}

.link:hover {
  color: #fff;
}

.linkNew {
  color: #0FAE96;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  cursor: pointer;
  background: #0FAE96;
  color: var(--w);
  text-align: center;
  /* text-transform: uppercase; */
  border-radius: 40px;
}

.btn--blue {
  padding: 20px 48px;
}

.btn:hover {
  background: var(--bg-bt2);
  color: #fff;
  box-shadow: 0 2px 13px var(--bg-bt2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn--block {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  padding-top: 0;
  padding-bottom: 0;
}

.sub2 {
  font-size: 16px;
  font-weight: 400;
  color: var(--tx2);
  margin-top: 16px;
  text-align: center;
}

/* burger */
.burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  display: none;
}

.burger span {
  display: block;
  height: 2px;
  width: 36px;
  background: #fff;
  margin: 1px auto;
  border-radius: 999px;
  flex: 0 0 2px;
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.55);
}

.mnav.is-open {
  display: block;
}

.mnav__panel {
  background: #212121;
  padding: 15px;
}

.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mnav__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: var(--text-n);
  font-size: 36px;
  line-height: 1;
}

.mnav__links {
  display: flex;
  gap: 14px;
  margin: 10px 0 18px;
}

.mnav__links a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.mnav__btn {}

.mnav__fx {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .row.row-th {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .topbar__row {
    padding: 16px 0;
  }
}

@media (min-width: 901px) {
  .mnav {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .mnav__links {
    display: grid;
  }

  .mnav__fx {
    justify-content: space-between;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  /* overflow: hidden; */
}

.hero-bg-color {
  /* background-color: #181818; */
  margin: 0 !important;
}

.hero-bg-color .hero__bg {
  color: #fff;
}

.hero-bg-color .hero__grid {
  align-items: center;
}

.hero-bg-color+.footerNew {
  margin-top: 0;
}

.hero>* {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__bg {
  position: relative;
  max-width: 666px;
  width: 100%;
}

.hero__text {
  max-width: 666px;
  width: 100%;
  color: #fff;
}

.hero__text h1 {
  font-size: 42px;
  line-height: 110%;
  font-weight: 700;
}

.hero__text p {
  margin: 0;
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 24px;
}

.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("../images/bg-top.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}

/* form card */
.leadCard {
  background: transparent;
  overflow: hidden;
  color: var(--tx2);
  max-width: 486px;
  width: 100%;
  padding: 48px;
  border-radius: 17px;

  border: 1px solid #FFFFFF0D;
  box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.25);
  background: #181818;

}

.leadCard__cap {
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 120%;
  color: var(--text-n);
  text-align: center;
}

.leadForm {}

.leadForm label {
  display: block;
  margin-bottom: 12px;
}

.leadForm span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: var(--dark);
  opacity: 60%;
  margin-bottom: 2px;
}

.leadForm input {
  width: 100%;
  color: var(--dark-brown);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  outline: none;
  border: none;
}

.leadForm input:focus {
  border-color: rgba(123, 215, 255, 0.45);
}

.label input {
  background-color: #212121;
  padding: 0 12px;
  height: 48px;
  border: 1px solid #FFFFFF33;
  border-radius: 6px;
}

.label.phone {
  padding: 0;
  height: 48px;

}

.iti,
.iti input {
  width: 100%;
  height: 100%;
}

.grid-two {
  grid-template-columns: 1fr 1fr;
}

.hero__tx h1 {
  margin: 0 0 24px;
  font-size: 60px;
  line-height: 110%;
  font-weight: 700;
}

.hero__tx p {
  font-size: 24px;
  line-height: 28px;
  max-width: 540px;
}

.hero__tx img {
  margin-top: 24px;
}

.formMg {
  margin-left: auto;
}

.form__subtitle {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  margin-top: 32px;
  color: #fff;
}

.form__link {
  color: #0FAE96;
}

/* ===LiveStrip==== */
.liveStrip {}

.liveStrip__viewport {
  overflow: hidden;
  width: 100%;
}

.liveStrip__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: liveMarquee var(--liveDur, 24s) linear infinite;
}

.liveStrip__group {
  display: flex;
  gap: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.liveCard {
  position: relative;
  width: 280px;
  max-width: 280px;
  height: 88px;
  border: 1px solid #FFFFFF0D;
  border-radius: 10px;
  padding: 12px;
  background: #181818;
  color: var(--text-n);
  align-items: center;
  box-shadow: 1px 1px 7px 0px #3c40433d;
}

.liveCard__ava {
  width: 64px;
  height: 64px;
  border-radius: 64px;
  object-fit: cover;
  grid-row: 1 / span 2;
  flex-shrink: 0;
}

.liveCard__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.liveCard__meta {
  font-size: 10px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.72);
}

.liveCard__row {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;

}

.liveCard__row .strip-r {
  width: 100%;
}

.liveCard__row .strip-r .row-liv>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.row-liv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.liveCard__label {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff88;
  font-weight: 300;
}

.liveCard__label span {
  margin-left: 5px;
  color: var(--bg-bt);
  font-weight: 500;
}

.liveCard__label span.col1 {
  color: #fff;
}

.liveCard__label span.col2 {
  color: #0FAE96;
}

.liveCard__val {
  color: #22ff22;
  font-weight: 700;
  font-size: 16px;
}

.liveCard__up {
  font-size: 12px;
  color: #22ff22;
  font-weight: 700;
  text-align: end;
}

.lvBg {
  background-color: var(--bg-bt-n);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--w);
}

.lvBg2 {
  background-color: var(--bg-bt2);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--w);
  margin: 6px 0px;
}

@keyframes liveMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--liveShift) * -1px));
  }
}

/* .liveStrip__viewport:hover .liveStrip__track{
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce){
  .liveStrip__track{ animation: none; }
} */



.logoMarquee {
  /* margin-bottom: 80px; */
}

.logoMarquee__viewport {
  overflow: hidden;
  width: 100%;
}

.logoMarquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logoMarquee var(--logoDur, 18s) linear infinite;
}

.logoMarquee__group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px;
}

/* pill */
.logoPill {
  height: 64px;
  width: 192px;
  padding: 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 4px;
  background: var(--w);
  border: 1px solid #3c404326;
  box-shadow: 1px 1px 7px 0px #3c40433d;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.logoPill img {
  width: auto;
}

.logoPill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(10, 15, 42, 0.22);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--logoShift) * -1px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logoMarquee__track {
    /* animation: none; */
  }
}

.liveStrip__track,
.logoMarquee__track {
  will-change: transform;
  transform: translateZ(0);
}

/* ===== Profit block  ===== */
.profit {
  background: #181818;
}

.profit__wrap {
  margin: 0 auto;
}

.profit__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 700;
}

.profit__subtitle {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--tx2);
  text-align: center;
}

.profit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
  margin-top: 48px;
}

.pCard {
  padding: 16px;
  height: 142px;
  background: #FFFFFF0D;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 13px #02000E1A;
  border: 1px solid #FFFFFF0D;
  border-radius: 16px;
}

.pCard__badge {
  width: 110px;
  min-width: 110px;
  height: 110px;

  background: #fff;
  border-radius: 50%;
  color: #181818;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}

.pCard__percent {
  font-size: 28px;
  font-weight: 500;
  color: #181818;
  line-height: 1.2;
}

.pCard__label {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 300;
  color: #181818;
}

.pCard__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

.pCard__head {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.pCard__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.pCard__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 16, 38, 0.8);
}

.pCard__icon svg {
  width: 18px;
  height: 18px;
}

.profit__cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.pCard__time {
  font-size: 18px;
  font-weight: 400;
}

.sec--white-bg {}

.sec--white2 {
  background-color: #F7F6FF;
}

.two {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  margin-top: 48px;
}

.two-title {
  max-width: 1190px;
  margin: auto;
}

.two-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-top: 48px;
  max-width: 1125px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.two__left {
  max-width: 588px;
  width: 100%;
}

.two__img {
  border-radius: 18px;
  overflow: hidden;
}

.two__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.two__left-block {
  background-color: rgba(243, 242, 255, 1);
  border: 1px solid rgba(230, 227, 255, 1);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.two__left-block h4 {
  border-bottom: 4px solid var(--red);

  display: inline-block;
}

.two__left-block p {
  font-weight: 400;
  margin-top: 8px;
}

.two-btn {
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  max-width: 223px;
}

.twoB {
  display: none;
}

.tx-accent {
  color: var(--red);
  font-weight: 400;
}

.featureList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 588px;
  width: 100%;
}

.featureItem {
  display: block;
}

.featureItem__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featureItem__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-bt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featureItem__icon svg {
  width: 22px;
  height: 20px;
}

.featureItem__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.featureItem__desc {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

/* profit grid */
.grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}

.pbox {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
}

.pbox__top {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pbox__top b {
  font-size: 16px;
}

.pbox__top small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.pbox__bot {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
}

.pbox__bot b {
  color: #fff;
}

/* WHY */
.why {
  margin-top: 48px;
  background: #181818;
  padding: 48px;
  border-radius: 24px;
}

.why__cards {
  display: grid;
  grid-template-columns: 438px 1fr;
  gap: 22px;
  align-items: center;
}

.cards__box {
  color: var(--text-n);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
}

.cards__box p {
  line-height: 24px;
  color: var(--tx2);
}

.cards__box:last-child {
  margin-bottom: 0;
}

.cards__item {
  margin-left: 26px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  color: var(--tx2);
}

.cards__title {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 24px;
}

.qcard {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.cards__list {
  padding-left: 0px;
}

.why__img {
  overflow: hidden;
  margin-left: 0;
}

.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 24px;
}

.crypto-help__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.xk-trade-matrix {
  border-radius: 20px;
}

.xk-trade-item img {
  border-radius: 10px;
}

.xk-trade-desc span {
  font-weight: 700;
}

.xk-trade-layer {
  padding: 32px;
}

.xk-trade-item {
  background-color: #030016;
  color: white;
  border-radius: 10px;
  height: 100%;
}

.crypto-help__subtitle {
  font-size: 18px;
  text-align: center;

  margin-top: 48px;
  font-weight: 700;
  margin-bottom: 80px;
}

/* glass block */
.glass {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadowDark);
}

.glass__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.glass__cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
}

.glass__cols p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 13px;
}

/* table dark */
.tableBox {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadowDark);
  overflow: auto;
}

.tableBox table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.tableBox th {
  text-align: left;
  padding: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tableBox td {
  padding: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.u {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.u i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(123, 215, 255, 0.9), rgba(47, 73, 255, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pos {
  color: #7bd7ff;
  font-weight: 800;
}

/* legit */
.legit-bg {
  background: rgba(243, 242, 255, 1);
  border: 1px solid rgba(230, 227, 255, 1);
  border-radius: 60px;
  padding: 80px 48px;
  margin-top: 80px;
}

.legit {
  display: flex;

  margin-top: 40px;
}

.legit-title {
  margin-top: 0px;
}

.legit-left {
  width: 50%;
  margin-right: 14px;
}

.legit-right {
  width: 50%;
}

.stamp {
  margin-left: auto;
}

.title--cn {
  text-align: center;
}

.sub {
  font-weight: 400;
  margin-bottom: 24px;
}

.sub:last-child {
  margin-bottom: 0;
}

.revWide {
  margin-top: 48px;
  position: relative;
}

.revWrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

.revWide__inner {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.rev__track {
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.rev__track::-webkit-scrollbar {
  display: none;
}

.revCard {
  flex: 0 0 100%;
  background: #212121;
  padding: 44px;
  scroll-snap-align: start;
  border-radius: 24px;
  border: 1px solid #2C2C2C;
  display: flex;
}

.revTop {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 50%;
  padding-right: 20px;
}

.revTop img {
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
}

.rev-title {
  font-size: 22px;
  font-weight: 700;
}

.rev-subtitle {
  font-size: 16px;
  color: #BCBCBC;
  margin-top: 4px;
}

.rev-text {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  border-left: 1px solid #2C2C2C;
  color: var(--tx2);
}


.revArrow {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  color: var(--text-n);
  font-size: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.revArrow.left {
  margin-right: 16px;
}

.revArrow.right {
  margin-left: 16px;
}

.revArrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}


.revDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.revDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid black;
  cursor: pointer;
}

.revDot.active {
  background: #000;
}


@media (max-width: 1280px) {
  .revWide__inner {
    padding-left: max(16px, calc((100vw - 1100px) / 2));
  }
}

@media (max-width: 560px) {
  .revCard {
    flex-basis: 335px;
  }

  .revWide {
    margin-top: 24px;
  }

  .rev-title {
    font-size: 20px;
  }

  .rev-subtitle {
    font-size: 16px;
  }

  .rev-text {
    font-size: 16px;
    font-weight: 200;
  }
}

.stepsBlock {}

.stepsBlock__title {}

.stepsBlock__subtitle {
  margin-top: 16px;
  font-size: 16px;
  text-align: center;
}

.stepLine {
  position: relative;
  height: 70px;
  margin: 48px auto 48px;
}

.stepLine__rail {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg,
      #01c37f38 0%,
      rgb(0 163 106) 25%,
      rgb(0 163 106) 50%,
      rgb(0 163 106) 75%,
      #01c37f3d 100%);
}

.stepLine__item {
  position: absolute;
  top: 6px;
  transform: translateX(-50%);
  text-align: center;
}

.stepLine__item--1 {
  left: 20%;
}

.stepLine__item--2 {
  left: 50%;
}

.stepLine__item--3 {
  left: 80%;
}

.stepLine__label {
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-bt);
  margin-bottom: 12px;
}

.stepLine__label--active {
  color: var(--bg-bt);
}

.stepLine__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-bt);
  margin: 0 auto;
}

.stepLine__dot--active {
  background: var(--bg-bt);
}

.stepsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: normal;
  margin-top: 24px;
}

.steps {
  padding: 32px 0;
}

.steps__title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  margin: 0 0 18px;
}

.steps__list {
  position: relative;
  display: flex;
  gap: 24px;
  margin-top: 48px;
}


@media screen and (max-width: 768px) {
  .steps__list {
    flex-direction: column;
  }
}

.step {
  flex: 1 1 100%;
  gap: 48px;
  align-items: center;
}

.step--img-right {
  grid-template-columns: 1fr 0.8fr;
}

.step--img-right .step__media {
  order: 2;
}

.step--img-right .step__content {
  order: 1;
}

.step__media {
  border-radius: 16px;
  padding-top: 50px;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.step__content img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 26px;
}

.step__media--beige {
  background: var(--bg2);
}

.step__media--blue {
  background: var(--dark-brown);
}

.step__media--green {
  background: #E6F4EA;
}

.step__content {
  max-width: 666px;
}

.step__kicker {
  max-width: 91px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #2C2C2C;
  margin-bottom: 15px;
  height: 35px;
  padding: 0;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.step__head {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 26px;
  font-weight: 700;
  color: var(--text-n);
}

.step__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--tx2);
}

.stepsBlock__tx {
  font-weight: 700;
  font-size: 16px;
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 992px) {
  .step {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step--img-right .step__media,
  .step--img-right .step__content {
    order: unset;
  }

  .step__content {
    max-width: 100%;
  }

  .step__head {
    font-size: 28px;
    margin: 0 0 24px;
  }

  .step__media {
    min-height: unset;
    order: 2;
  }

  .step__content {
    order: 1;
  }




}

.sCard__head {
  font-size: 24px;
  margin: 24px 0px 16px 0px;
  text-transform: uppercase;
  line-height: 27px;
}

.sCard__text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  max-width: 330px;
  margin-inline: auto;
}

.stepsBlock__cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 16px;
}

.stepsBlock__text {
  margin-bottom: 24px;
}

.stepsBlock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 56px;
  border-radius: 10px;
  background: #2f49ff;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(47, 73, 255, 0.22);
}

/* final dark */
.final {
  position: relative;
  background-size: cover;
}

.final-bg {
  position: relative;
  z-index: 2;
}

.final-bg {
  color: #fff;
}

.final__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.final__text {
  max-width: 666px;
  width: 100%;
}

.final__text h2 {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.3px;
  text-align: left;
}

.final__text p {
  font-weight: 400;
  margin-top: 24px;
  font-size: 16px;
  color: #fff;
}

.footer-text {
  font-weight: 700 !important;
}

.final__text-bg {
  background-color: rgba(243, 242, 255, 1);
  border: 1px solid rgba(230, 227, 255, 1);
  border-radius: 16px;
  color: var(--bg-bright);
  padding: 24px;
  font-weight: 500 !important;
}

.final__text img {
  margin-top: 56px;
}

/* footer */
.footerNew {
  position: relative;
  background: #181818;
  z-index: 2;
  padding: 80px 0 80px;
}

.footerNew__wrap {
  width: min(1311px, calc(100% - 64px));
  margin: 0 auto;
}

.footerNew__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 18px;
}

.footerNew__brand {
  max-width: 245px;
  width: 100%;
}

.footerNew__brandText {
  font-size: 28px;
}

.footerNew__brandAI {
  font-size: 28px;
  color: #7bd7ff;
}

.footerNew__payments {
  display: flex;
  align-items: center;
  gap: 24px 50px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: space-between;
  margin-right: 44px;
}

.footerNew__payments img {
  max-height: 32px;
  width: auto;
  display: block;
}

.payI {}

.footerNew__grid {
  display: flex;
  gap: 155px;
  align-items: start;
  margin-top: 48px;
}

.footerNew__left {
  width: 73%;
}

.footerNew__left p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--tx2);
}

.footerNew__right {
  /* padding-top: 6px; */
}

.fCol {
  margin-bottom: 32px;
}

.fCol__title {
  font-size: 24px;
  color: #fff;
}

.fCol__link {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.fCol__link:hover {
  opacity: 0.8;
}

/* socials */
.footerNew__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.soc {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.soc svg {
  width: 18px;
  height: 18px;
}

/* ===== Legal pages base ===== */
.legal {
  padding: 48px 0 80px;
}

.legal__wrap {}

/* ===== Titles ===== */
.legal__title {
  font-size: 60px;
  font-weight: 700;
  margin: 0px;
}

.legal__heading {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.legal__heading2 {
  font-size: 18px;
}

.legal__intro {
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
  color: var(--tx2);
}

.legal__text {
  font-size: 18px;
  font-weight: 400;
  margin-top: 12px;
  color: var(--tx2);
}

.legal__section {
  margin-top: 48px;
}

.legal__list {
  margin: 12px 0px 0px 30px;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
}

.legal__list li {
  margin-bottom: 6px;
}

.legal__list li span {
  font-weight: 700;
}

.legal a {
  color: #0FAE96;
  text-decoration: underline;
}

.legal a:hover {
  text-decoration: none;
}

.aboutPage {
  padding: 48px 0 60px;
}

/* ===== HERO ===== */
.aboutHero {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 40px;
  align-items: center;
}

.aboutHero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
}

.aboutHero__sub {
  margin-top: 24px;
  font-size: 24px;
  line-height: 135%;
}

.aboutHero__visual {}

.aboutHero__phone {
  width: 100%;
  max-width: 486px;
  height: auto;
  z-index: 2;
}

.aboutBlock {}

.aboutBlock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.aboutBlock__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.aboutBlock__text p {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
}

.aboutBlock__text p:last-child {
  margin-bottom: 0;
}


.about-box p {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
}

/* ===== BENEFITS ===== */
.benefits {}

.benefits__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.benefits__left {
  padding: 32px;
  padding-left: 0;
  color: #222;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits__left p {
  margin-bottom: 24px;
  color: #222;
}

.benefits__left p:last-child {
  margin-bottom: 0;
}

.benefits__title {
  margin: 0 0 16px;
  color: var(--text-n);
  font-size: 24px;
  font-weight: 700;
}

.benefits__list {
  padding-left: 22px;
}

.benefits__list li {
  /* display: flex; */
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: var(--tx2);
}

.benefits__plus {
  content: "";
  background-image: url(../images/star.svg);
  width: 100%;
  max-width: 12px;
  height: 12px;
  background-size: cover;
}

.benefits__right {
  max-width: 600px;
  margin-left: auto;
}

.benefits__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits__bottom {
  grid-column: 1 / -1;
  background: rgba(243, 242, 255, 1);
  padding: 32px;
  border: 1px solid rgba(230, 227, 255, 1);
}

.benefits__bottom p {}

/* ===== CTA ===== */
.aboutCta {
  padding: 32px;
  text-align: center;
  margin-top: 48px;
  background: #181818;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  border: 1px solid #FFFFFF0D;
  border-radius: 18px;
}

.aboutCta__box {
  max-width: 1092px;
  text-align: center;
  margin: auto;
}

.aboutCta strong {
  display: block;
}


.aboutCtaTx2 {
  font-size: 16px;
  color: var(--text-n) !important;
}

.aboutCta__btn {
  margin-top: 24px;
  height: 67px;
}

.lt {}

.lt__title {
  text-align: center;
  font-weight: 700;
  line-height: 1.06;
  font-size: 36px;
  margin-bottom: 48px;
  color: var(--text-n);
  max-width: 994px;
  margin-left: auto;
  margin-right: auto;
}

.lt-table {
  overflow: hidden;
  background: var(--dark-brown);
  box-shadow: 0 2px 13px #02000E1A;
  border-radius: 18px;
}

/* HEAD */
.lt-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 0.8fr;
  background-color: #181818;
  border-bottom: 1px solid #2C2C2C;
  color: #fff;
}

.lt-head>div {
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 700;
  border-right: 1px solid #2C2C2C;
}

.lt-head>div:last-child {
  border-right: 0;
}

.lt-body {
  overflow: hidden;
}

.lt-track {
  will-change: transform;
}

.lt-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 0.8fr;
}

.lt-cell {
  padding: 12px 14px;
  font-size: 13px;
  border-right: 1px solid #2C2C2C;
  border-bottom: 1px solid #2C2C2C;
}

.lt-row:last-child .lt-cell {
  border-bottom: 0;
}

.lt-row .lt-cell:last-child {
  border-right: 0;
}

.lt-row--light {
  background: #212121;
  color: #fff;
}

.lt-row--dark {
  background: #181818;
  color: #fff;
}

.lt-cell--mono {
  font-variant-numeric: tabular-nums;
}

.lt-cell--investor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lt-cell-cl {
  color: #fff;
}

.lt-cell-cl2 {
  color: #fff;
}

.lt-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.profitCalc {
  display: flex;
  align-items: center;
}

.profitCalc__left {
  max-width: 588px;
  width: 100%;
  margin-right: 25px;
}

.profitCalc__left h2 {
  font-size: 36px;
  text-align: start;
}

.profitCalc__left p {
  color: var(--tx2);
  margin-bottom: 48px;
  margin-top: 24px;
  font-weight: 400;
}

.profitCalc__card {
  background: #212121;
  color: #fff;
  padding: 48px;
  max-width: 588px;
  width: 100%;
  border: 1px solid #FFFFFF0D;
  border-radius: 18px;
}

.calcBlock {
  margin-bottom: 24px;
}

.calcHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calcValue {
  background: #2C2C2C;
  color: #fff;
  border-radius: 6px;
  padding: 6px;
  font-weight: 500;
  max-width: 134px;
  width: 100%;
  text-align: center;
}

input[type="range"] {
  width: 100%;
}

.calcLabels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 8px;
}

.calcResult {
  background: #2C2C2C;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
}

.calcResult strong {
  display: block;
  font-size: 36px;
  color: #0FAE96;
  /* color: var(--bg-bt-n); */
  line-height: 50px;
}

.calcResult small {
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

/* .profitCalc__card input[type="range"] {
  --accent: #f6a21a;
  --track: rgba(255, 255, 255, 0.7);
  --trackH: 8px;
  --thumb: 24px;
  --ring: 5px;
  --fill: 0%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: var(--trackH);
  border-radius: 999px;
  outline: none;
  cursor: pointer;

  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) var(--fill),
    var(--track) var(--fill),
    var(--track) 100%
  );
} */
.profitCalc__card input[type="range"] {
  --track: #E8E8E8;
  --trackH: 8px;
  --thumb: 24px;
  --ring: 5px;
  --fill: 0%;

  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: var(--trackH);
  border-radius: 999px;
  outline: none;
  cursor: pointer;

  background: linear-gradient(to right,
      var(--accent) 0%,
      var(--accent) var(--fill),
      var(--track) var(--fill),
      var(--track) 100%);
}

.range--green {
  --accent: #0FAE96;
}

.range--blue {
  --accent: #0FAE96;
}

.profitCalc__card input[type="range"]::-webkit-slider-runnable-track {
  height: var(--trackH);
  background: transparent;
  border-radius: 999px;
}

.profitCalc__card input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;

  width: var(--thumb);
  height: var(--thumb);
  border-radius: 50%;

  background: #fff;
  border: var(--ring) solid var(--accent);

  margin-top: calc((var(--trackH) - var(--thumb)) / 2);

  transition: 0.15s ease;
}

.profitCalc__card input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.05);
}

.profitCalc__card input[type="range"]::-moz-range-track {
  height: var(--trackH);
  background: transparent;
  border-radius: 999px;
}

.profitCalc__card input[type="range"]::-moz-range-thumb {
  width: var(--thumb);
  height: var(--thumb);
  border-radius: 50%;

  background: #fff;
  border: var(--ring) solid var(--accent);

  transition: 0.15s ease;
}

.btnCalc {
  margin-top: 24px;
  color: #000;
  padding: 28px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: none;
  font-size: 18px;
}

/* ===== FAQ ===== */
.faq {
  background: #181818;
}

.faq__title {
  margin-bottom: 50px;
  text-align: center;
}

.faq__list {
  display: grid;
  max-width: 996px;
  margin: 0 auto;
}

.faqItem {
  background: #212121;
  border: 1px solid #2C2C2C;
}
.faqItem:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.faqItem:last-child {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.faq-br {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.faq-br2 {
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.faqItem__head {
  width: 100%;
  border: 0;

  cursor: pointer;

  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;

  padding: 32px;
  text-align: left;
}

.faqItem p {
  color: var(--tx2);
}

.faqItem__q {
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.faqItem__icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faqItem__icon::before,
.faqItem__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.faqItem__icon::before {
  width: 18px;
  height: 2px;
}

.faqItem__icon::after {
  width: 2px;
  height: 18px;
}

.faqItem__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faqItem__inner {
  padding: 0 38px 34px;
  color: #575757;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  max-width: 95%;
}

.faqItem.is-open .faqItem__icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.faqItem__head:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  border-radius: 22px;
}

.faqItem__head:hover .faqItem__icon::before,
.faqItem__head:hover .faqItem__icon::after {
  background: #f2f2f2;
}

/* ===== DEMO ===== */
.demoSec {}

.demoSec__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.demoSec__title {
  font-size: 36px;
  text-align: left;
}

.demoRight p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 24px;
  color: var(--tx2);
}

.demoSec__subtitle {
  /* max-width: 996px; */
  margin: 0 auto 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.demoSec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 12px;
  gap: 24px;
}

.demo2 {
  grid-template-columns: 1.4fr 1fr;
}

.demo3 {
  grid-template-columns: 0.7fr 1fr;
}

.demoCard {
  margin-top: 32px;
  color: var(--text-n);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.wrapper-demoCard-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.wrapper-demoCard-ll {
  flex: 1 1 calc(25% - 24px);
  background: #181818;
  padding: 24px;
  border: 1px solid #FFFFFF0D;
  border-radius: 18px;
}

.demoCard .br-accent {
  margin-bottom: 32px;
  border: 0;
}

.demoCard2 {
  max-width: 690px;
}

.demoCard2 h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 24px;
}

.demoCard2 p {
  margin-top: 24px;
}

.demoBoxText {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.demoBoxText p {
  font-size: 18px;
}

.demoBoxText-n {
  font-style: italic;
  margin: 24px 0px;
  font-weight: 700;
  font-size: 24px !important;
}

.br-accent {
  border-bottom: 1px solid #dadce0;
  margin-bottom: 16px;
  padding-bottom: 16px;
  margin-top: 0px;
}

.demoCard p {
  color: var(--text-n);
  font-size: 16px;
  font-weight: 400;
}

.demoCardTx {
  margin-bottom: 16px;
}

.demoCard p:last-child {
  margin-bottom: 0;
}

.demoCard b {
  color: var(--text-n);
  font-weight: 700;
  font-size: 16px;
}

.mg-b {
  margin-bottom: 8px;
}

.demoImg {
  overflow: hidden;
}

.demoImg .bg {
  padding: 32px;
  border-radius: 16px;
  background: #F3CE00;
  margin-bottom: 32px;
}

.demoImg2 {
  margin: auto;
}

.demoBoxImg {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.demoImg img {
  width: 100%;
  /* height: 100%; */
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.demoSec__note {
  max-width: 980px;
  margin: 48px auto 24px;
  text-align: center;
}

.demoTx2 {
  margin-bottom: 16px;
  color: var(--tx2);
}

.demoBt {
  background-color: var(--dark-brown);
  padding: 32px;
  border-radius: 10px;
  margin-top: 24px;
}

.demoBt p {
  font-weight: 700;
}


.demoSec__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 38px;
  padding: 0 18px;
  margin: 0 auto;
  border-radius: 6px;
  background: #0f8a47;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 138, 71, 0.25);
}

.demoSec__btn:hover {
  filter: brightness(1.05);
}

.demoSec__btn:active {
  transform: translateY(1px);
}

.demoBlock {
  background: #181818;
}

.demoBlock__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}

.demoBlock__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-n);
  text-align: left;
  margin-bottom: 24px;
  text-align: center;
}

.demoBlock__subtitle {
  margin: 10px auto 34px;
  font-size: 16px;
  color: var(--tx2);
}


.demoBlock__box {
  margin: 0 auto;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.demoBlock__left {}

.demoBlock__box+.demoBlock__box {
  margin-top: 24px;
}

@media screen and (max-width: 901px) {
  .demoBlock__box {
    display: block;
  }

  .demoBlock__left img {
    width: 100%;
    margin-bottom: 24px;
  }

  .demoBlock__box+.demoBlock__box .demoBlock__left .demoBlock-li {
    margin-bottom: 24px;
  }
}


.demoBlock__right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.demoBlock-li {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 24px;
  padding: 24px;
  min-height: 91px;
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 400;
  border: 1px solid #FFFFFF0D;
  background: #212121;
  border-radius: 18px;
}

.demoBlock__left img {
  max-width: 100%;
  height: auto;
  display: block;
}

.demoBlock__cta {
  margin-top: 48px;
}

.demoBlock__cta p {
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.demoBlock__btn {}

.qaVoices {
  padding-top: 80px;
  background: #fff;
}

.qaVoices__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.qaVoices__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-n);
  max-width: 1035px;
  margin: auto;
}

.qaVoices__intro {
  margin: 14px auto 48px;
  max-width: 1072px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--tx2);
}


.qaVoices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.qaVoices__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.qaVoices__grid-bg {
  padding: 24px;
  max-width: 588px;
  border-radius: 10px;
  background-color: var(--dark-brown);
  text-align: left;
  color: var(--tx2);
}

.qaV-b {
  background-color: var(--bg2);
}

.qaVoices__grid-bg p {
  font-size: 16px;
}

.qaVoices__card {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.qaVoices__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.qaVoices__img {
  width: 100%;
  height: 232px;
  overflow: hidden;
}

.qaVoices__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qaVoices__body {
  padding: 24px;
}

.qaVoices__name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-n);
}

.qaVoices__role {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  color: var(--tx2);
}

.qaVoices__quote {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-n);
  font-style: italic;
  border-top: 1px solid #dadce0;
  margin-top: 12px;
  padding-top: 12px;
}

.spanH {
  height: 20px;
  display: block;
}

.bt-n2 {
  display: none;
}

@media (max-width: 1024px) {
  .qaVoices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .qaVoices {
    padding: 60px 0;
  }

  .qaVoices__title {
    font-size: 30px;
  }

  .qaVoices__intro {
    margin-bottom: 34px;
    font-size: 13px;
  }

  .qaVoices__grid {
    grid-template-columns: 1fr;
  }

  .qaVoices__grid2 {
    grid-template-columns: 1fr;
  }

  .qaVoices__img {
    height: 270px;
  }

  .spanH {
    height: 0px;
  }
}

.qaLayout {
  padding: 90px 0;
}

.qaLayout.bg {
  background: #181818;
}


.qaLayout.bg .qaLayout__col {
  background: #fff;
}

.qaLayout.bg .qaLayout__block p {
  font-style: normal;
}

.qaLayout__wrap {}

.qaLayout__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-n);
  text-align: center;
}

.qaLayout__subtitle {
  margin: 16px auto 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--tx2);
  text-align: center;
}

.qaLayout__cols {
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 180px 1fr;
  gap: 24px;
  align-items: center;
}

.qaLayout__col-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qaLayout__col-info div {
  display: flex;
  flex-direction: column;
}

.qaLayout__col-info div strong {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}

.qaLayout__col-info div span {
  font-size: 16px;
  font-weight: 400;
}

.qaLayout__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qaLayout__block {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #FFFFFF0D;
  background: #181818;
}




.qaLayout__block--yellow p {
  font-weight: 700 !important;
}

.qaLayout__image {
  border-radius: 16px;
  overflow: hidden;
}

.qaLayout__image img {
  width: 100%;
  height: auto;
  display: block;
}

.qaLayout__block h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-n);
}

.qaLayout__cta {
  margin-top: 32px;
}

.qaLayout__block ul {
  margin: 0 0 12px;
  padding-left: 20px;
  
}

.qaLayout__block li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--tx2);
}

.qaLayout__block p {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--tx2);
}

.qaLayout__block p:last-child {
  margin-bottom: 0;
}

.qaLayoutTx {
  font-size: 15px !important;
}

@media (max-width: 900px) {
  .qaLayout__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .demoBlock__box {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .demoBlock__right {
    order: -1;
  }

  .demoBlock__list li {
    font-size: 20px;
  }
}

.footer-title {
  font-size: 36px;
}

.profit__btn {
  display: table;
  margin: auto;
}

.btn--mid {
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
}

.list2 li {
  color: var(--text-n);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1200px) {
  .profitCalc {
    flex-direction: column;
  }

  .profitCalc__left {
    width: 100%;
    margin-right: 0px;
  }

  .profitCalc__card {
    width: 100%;
  }

  .profitCalc__left button {
    display: none;
  }

  .btnCalc {
    display: flex;
    width: 100%;
    max-width: 588px;
  }

  .btn--mid {
    /* display: none; */
    margin-top: 24px;
  }

  .bt-n {
    display: none;
  }

  .bt-n2 {
    display: block;
    margin-top: 30px;
  }
}

@media (max-width: 1024px) {
  .hero__bg {
    background-position: center top;
    background-size: cover;
    /* opacity: 0.25; */
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__text {
    margin: auto;
    text-align: center;
  }

  .hero__image {
    left: 50%;
    transform: translate(-50%, -12%);
  }

  .hero__bg {
    margin: auto;
  }

  .hero__tx {
    max-width: 520px;
    margin: auto;
  }

  .leadCard {
    max-width: 520px;
    margin: 0 auto;
  }

  .leadCard {
    padding: 32px;
  }

  .two {
    grid-template-columns: 1fr;
  }

  .two__left {
    margin: auto;
  }

  .featureList {
    margin: auto;
  }

  .two__img img {
    min-height: 300px;
  }

  .twoN {
    display: none;
  }

  .twoB {
    display: block;
  }

  .two-btn {
    width: 100%;
  }

  .grid6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .why__cards {
    grid-template-columns: 1fr!important;
  }

  .why {
    padding: 24px;
  }

  .cards__box {
    order: 2;
  }

  .why__img {
    order: 1;
    margin: 0;
  }

  .glass__cols {
    grid-template-columns: 1fr;
  }

  .legit {
    grid-template-columns: 1fr;
  }

  .legit-bg {
    padding: 60px 16px;
  }

  .stamp img {
    margin: auto;
    max-width: 343px;
  }

  .stamp {
    margin-left: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step img {
    /* height: 170px; */
  }

  .qaLayout__title {
    font-size: 28px;
  }

  .qaLayout {
    padding: 60px 0px;
  }

  .final__grid {
    grid-template-columns: 1fr;
  }

  .foot__row {
    flex-direction: column;
  }

  .foot__cols {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .profit__wrap {
    width: min(1200px, calc(100% - 44px));
  }

  .profit__title {
    font-size: 38px;
  }

  .profit__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .footerNew__wrap {
    width: min(1311px, calc(100% - 44px));
  }

  .footerNew__grid {
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }

  .footerNew__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerNew__right {
    text-align: center;
  }

  .footerNew__social {
    justify-content: center;
  }

  .footerNew {
    padding: 60px 0px;
  }

  .aboutHero__title {
    font-size: 38px;
  }

  .aboutBlock__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefits__card {
    grid-template-columns: 1fr;
    /* border-radius: 0px; */
    flex-direction: column-reverse;
    display: flex;
    padding: 24px;
  }

  .benefits__card2 {
    flex-direction: column;
  }

  .benefits__right {
    margin-bottom: 24px;
  }

  .bn-card2 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .bn-card3 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .benefits__right img {
    height: 240px;
  }

  .benefits__right {
    /* margin: 0; */
    margin-left: 0px;
    max-width: 100%;
  }

  .stepsBlock__wrap {
    width: min(1200px, calc(100% - 44px));
  }

  .stepsBlock__title {
    font-size: 36px;
  }

  .stepsGrid {
    gap: 34px;
  }

  h4 {
    font-size: 20px;
  }

  .final__text {
    margin: auto;
    max-width: 520px;
  }

  .why__img img {
    max-height: 239px;
  }

  .form__subtitle {
    margin-top: 24px;
    font-size: 10px;
  }

  .faq {
    padding-top: 60px;
  }

  .faq__list {
    max-width: 100%;
    gap: 14px;
  }

  .faqItem__head {
    padding: 26px 24px;
  }

  .faqItem__q {
    font-size: clamp(20px, 3.2vw, 28px);
  }

  .faqItem {
    border-radius: 18px;
  }

  .faqItem__icon {
    width: 34px;
    height: 34px;
  }

  .faqItem__inner {
    padding: 0 24px 26px;
    max-width: 100%;
  }

  .demoSec__grid {
    grid-template-columns: 1fr;
  }

  .demoImg {
    min-height: 220px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 0px;
  }

  .demoCard {
    min-height: 220px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
  }

  .demoBoxText {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
  }

  .demoBoxImg {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 10px;
  }

  .demoSec__title {
    font-size: 30px;
  }

  .demoImg2 {
    margin-top: 24px;
  }
}

@media (max-width: 930px) {
  p {
    font-size: 16px !important;
  }

  .hero__text p {
    font-size: 16px;
  }

  .pg-top {
    padding-top: 60px;
  }

  .pg-bottom {
    padding-bottom: 60px;
  }

  .mg-top {
    padding-top: 60px;
  }

  .aboutPage {
    padding: 48px 0 46px;
  }

  .aboutHero__left {
    max-width: 454px;
    margin: auto;
  }

  .aboutHero {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-box p {
    font-size: 18px;
  }

  .aboutHero__title {
    font-size: 36px;
  }

  .aboutHero__sub {
    font-size: 18px;
    margin-top: 16px;
  }

  .aboutBlock__text p {
    font-size: 16px;
  }

  .aboutHero__visual {
    margin-top: 24px;
  }

  .aboutHero__phone {
    margin: auto;
  }

  .aboutHero__candles {
    height: 120px;
    opacity: 0.9;
  }

  .aboutBlock__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    margin-top: 14px;
  }

  .aboutBlock__img {
    margin: auto;
  }

  .benefits__left {
    /* padding: 24px; */
  }

  .benefits__bottom {
    padding: 24px;
  }

  .benefits__list li {
    font-size: 16px;
  }

  .aboutCta__box {}

  .aboutCta__btn {
    width: 100%;
  }

  .profitCalc__card {
    padding: 24px;
  }

  .calcResult strong {
    font-size: 28px;
    line-height: 32px;
  }

  .calcResult {
    padding: 16px;
  }

  .legit-bg {
    margin-top: 60px;
  }

  .final {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }

  .lt__title {
    font-size: 28px;
  }

  .hero__bg {
    max-width: 520px;
  }

  .hero__text h1 {
    font-size: 36px;
    margin: 0 0 16px;
  }

  .hero__tx h1 {
    font-size: 36px;
    margin: 0 0 16px;
  }

  .hero__text {
    text-align: left;
  }

  .title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .two-subtitle {
    font-size: 16px;
  }

  .leadCard__cap {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .featureItem__title {
    font-size: 20px;
  }

  .featureItem__desc {
    font-size: 16px;
  }

  .grid6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tableBox table {
    min-width: 520px;
  }

  .rev__track {
    grid-auto-columns: minmax(240px, 1fr);
  }

  .foot__cols {
    grid-template-columns: 1fr;
  }

  .legal {
    padding: 28px 0 50px;
  }

  .legal__title {
    font-size: 36px;
  }

  .legal__intro {
    font-size: 16px;
  }

  .legal__heading {
    font-size: 20px;
  }

  .legal__text,
  .legal__list {
    font-size: 16px;
  }

  .legal__heading2 {
    font-size: 16px;
  }

  .final__text h2 {
    font-size: 28px;
  }

  .final-bg {
    padding: 60px 0px;
  }
}

@media (max-width: 730px) {
  .profit {
    padding: 80px 0px;
    margin-top: 80px;
  }

  .profit__wrap {
    width: min(1200px, calc(100% - 26px));
  }

  .profit__title {
    font-size: 28px;
  }

  .profit__subtitle {
    font-size: 16px;
  }

  .profit__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pCard {
    height: 92px;
  }

  .pCard__head {
    font-size: 28px;
  }

  .profit__btn {
    width: 100%;
  }

  .pCard__badge {
    margin-right: 32px;
  }

  .pCard__percent {
    font-size: 28px;
  }

  .pCard__label {
    font-size: 16px;
  }

  .pCard__time {
    font-size: 16px;
  }

  .cards__box {
    font-size: 16px;
    /* padding: 24px; */
  }

  .profitCalc__left h2 {
    font-size: 28px;
  }

  .profitCalc__left p {
    margin-bottom: 24px;
  }

  .pg-top {
    padding-top: 48px;
  }

  .pg-bottom {
    padding-bottom: 48px;
  }

  .hero__text p {
    margin-top: 16px;
  }

  .demoBoxText-n {
    font-size: 20px !important;
  }
}

@media (max-width: 825px) {
  .stepLine {
    display: none;
  }

  .stepsGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stepsBlock__title {
    font-size: 28px;
  }

  .sCard__mStep {
    display: block;
  }

  .sCard__img img {
    max-width: 360px;
  }

  .sCard__img--phone img {
    width: 150px;
  }

  .stepsBlock__cta {
    margin-top: 48px;
  }

  .stepsBlock__cta a {
    width: 100%;
  }

  .stepsBlock__btn {
    width: 100%;
    height: 54px;
    border-radius: 10px;
  }

  .sCard {
    margin-top: 5px;
  }

  .sCard__head {
    font-size: 18px;
    margin: 16px 0px;
  }

  .sCard__text {
    font-size: 16px;
  }
}

@media (max-width: 678px) {
  .topbar__row {}

  .footerNew__brand img {
    margin: auto;
  }

  .legit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .faqItem {
    border-radius: 14px;
  }

  .faqItem__head {
    padding: 18px 16px;
    gap: 12px;
  }

  .faqItem__q {
    font-size: 18px;
    line-height: 1.35;
  }

  .faqItem__icon {
    width: 30px;
    height: 30px;
  }

  .faqItem__icon::before {
    width: 16px;
    height: 2px;
  }

  .faqItem__icon::after {
    width: 2px;
    height: 16px;
  }

  .faqItem__inner {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .footerNew__payments {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px 20px;
    align-items: center;
    margin-right: 0px;
  }

  .footerNew__payments .payI {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .footerNew__payments img {
    max-height: 22px;
    width: auto;
    max-width: 100%;
    display: block;
  }

  .footerNew__payments .payI:nth-child(1) {
    grid-column: 1 / span 3;
  }

  .footerNew__payments .payI:nth-child(2) {
    grid-column: 4 / span 3;
  }

  .footerNew__payments .payI:nth-child(3) {
    grid-column: 7 / span 3;
  }

  .footerNew__payments .payI:nth-child(4) {
    grid-column: 10 / span 3;
  }

  .footerNew__payments .payI:nth-child(5) {
    grid-column: 1 / span 4;
  }

  .footerNew__payments .payI:nth-child(6) {
    grid-column: 5 / span 4;
  }

  .footerNew__payments .payI:nth-child(7) {
    grid-column: 9 / span 4;
  }

  .footerNew__payments .payI:nth-child(8) {
    grid-column: 4 / span 6;
  }

  .demoCard {
    padding: 24px;
  }

  .demoSec__subtitle {
    margin: 0 auto 24px;
  }
}

@media (max-width: 560px) {
  .footerNew__wrap {
    width: min(1200px, calc(100% - 26px));
  }

  .footerNew__brandText,
  .footerNew__brandAI {
    font-size: 24px;
  }

  .hero__art {
    height: 500px;
  }

  .menu {
    flex-direction: column;
    gap: 12px;
  }

  .hero::before {}
}

@media (max-width: 380px) {
  .chip {
    height: 26px;
    font-size: 11px;
  }

  .btn--blue {
    padding: 20px 46px;
  }

  .logo {
    max-width: 200px;
  }
}

@media (max-width: 1024px) {
  .legit {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
  }

  .legit-left {
    margin: auto;
  }

  .legit-right {
    margin: auto;
  }
}

@media (max-width: 700px) {
  .crypto-help__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ac-text {
  color: #007f52;
  margin-top: 4px;
  display: none;
}

.stepsBlock__tex {
  text-align: center;
  margin-top: 15px;
}

/* ===== Auto trading section ===== */
.autoTrade {
  padding: 80px 0;
  background: #fff;
  color: #030016;
}

.autoTrade__wrap {
  width: min(1200px, calc(100% - 30px));
  margin: 0 auto;
  text-align: center;
}

.autoTrade__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.12;
  font-weight: 600;
}

.autoTrade__subtitle {
  margin: 14px auto 0;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(3, 0, 22, 0.72);
  font-weight: 400;
}

.autoTrade__note {
  margin: 22px auto 0;
  max-width: 999px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(3, 0, 22, 0.85);
  font-weight: 600;
}

.autoTrade__cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.autoTrade__card {
  background: #030016;
  color: #fff;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.autoTrade__num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.95;
}

.autoTrade__text {}

.autoTrade__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.autoTrade__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  background: #009964;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 10px 24px rgba(0, 153, 100, 0.25);
}

.autoTrade__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 153, 100, 0.3);
}

.autoTrade__btn:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .autoTrade {
    padding: 60px 0;
  }

  .autoTrade__cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .autoTrade__text {
    max-width: none;
  }
}

.final__grid {
  position: relative;
}

.final__grid>div {
  z-index: 2;
}

.contact-image-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: center;
}


.cards__box-custom-li {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid #2C2C2C;
  display: flex;
  align-items: center;
  font-size: 22px;
}

.cards__box-custom-li span {
  color: #16A180;
}

.cards__box-custom-li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.sec-cta {
  margin-top: 48px;
  width: 100%;
  text-align: center;
  background: #212121;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #2C2C2C;
  font-size: 16px;
}

.sec-cta .btn--mid {
  margin-top: 24px;
}