@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
:root {
  --wrap: 1200px;

  --bg-bt: #1a73e8;
  --bg-bt-n: #109c35;
  --bg-bt2: #185abc;
  --bg-bt3: #1a73e866;
  --bg-bright: #fff2d5;
  --dark-brown: #e8f0fe;
  --bg2: #fef7e0;
  --text-n: #202124;
  --tx2: #5f6368;
  --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;
}
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;
  text-align: center;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
}
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;
}
.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;
  border-bottom: 1px solid #dadce0;
  background-color: #fff;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 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: var(--text-n);
  border-radius: 999px;
  font-weight: 700;
}
.menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.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: var(--bg-bt);
  font-weight: 400;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 10px 32px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  cursor: pointer;
  background: var(--bg-bt);
  color: var(--w);
  text-align: center;
}
.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: 67px;
  margin-top: 16px;
}
.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: var(--text-n);
  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: var(--bg-bright);
  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: var(--text-n);
}

.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::before {
  /* content: "";
  position: absolute;
  inset: 0;
  background: url(../images/bg-top.png);
  pointer-events: none;
  z-index: 1;
  max-width: 324px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  height: 370px; */
}

.hero > * {
  position: relative;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero__bg {
  position: relative;
  max-width: 666px;
  width: 100%;
}
.hero__text {
  max-width: 666px;
  width: 100%;
}
.hero__text h1 {
  font-size: 56px;
  line-height: 110%;
  font-weight: 700;
}
.hero__text p {
  margin: 0;
  color: var(--tx2);
  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: var(--dark-brown);
  border-radius: 10px;
  overflow: hidden;
  color: var(--tx2);
  max-width: 486px;
  width: 100%;
  padding: 48px;
}
.leadCard__cap {
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 120%;
  color: var(--text-n);
}
.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 {
  background-color: var(--w);
  border-radius: 6px;
  padding: 11px 12px;
  border: 1px solid #dadce0;
}
.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;
}
.form__link {
  color: var(--bg-bt);
}
/* ===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: 12px;
  padding-right: 12px;
}

.liveCard {
  position: relative;
  width: 290px;
  max-width: 290px;
  height: 100px;

  border-radius: 8px;
  border: 1px solid #dadce0;
  background: var(--w);
  color: var(--text-n);
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  align-items: center;
      box-shadow: 1px 1px 7px 0px #3c40433d;
}

.liveCard__ava {
  width: 100px;
  height: 100px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  object-fit: cover;
  grid-row: 1 / span 2;
}

.liveCard__name {
  font-size: 16px;
  font-weight: 700;
  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: 4px;
  
}
.row-liv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 177px;
}
.liveCard__label {
  opacity: 0.75;
  font-size: 16px;
  font-weight: 400;
  margin: 6px 0px;
}

.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-color: var(--dark-brown);
  padding: 100px 0px;
  margin-top: 100px;
}

.profit__wrap {
  margin: 0 auto;
}

.profit__title {
  margin: 0;
  text-align: center;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
}

.profit__subtitle {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--tx2);
}

.profit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
  margin-top: 48px;
}

.pCard {
  height: 124px;
  border-radius: 8px;
  background: var(--w);
  border: 1px solid #dadce0;
  display: flex;
  overflow: hidden;
  box-shadow: 1px 1px 7px 0px #3c404391;
}

.pCard__badge {
  width: 124px;
  min-width: 124px;

  background: var(--dark-brown);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  margin: 0 24px 0 0;
}

.pCard__percent {
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-bt);
  line-height: 34px;
}

.pCard__label {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.85;
  color: var(--tx2);
}

.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: var(--dark-brown);
  padding: 100px 0px;
}
.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-color: var(--bg2);
  border-radius: 16px;
  padding: 48px;
}
.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  /* margin-bottom: 24px; */
}
.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 {
  border-radius: 10px;
  overflow: hidden;
}
.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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 588px;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  scroll-snap-align: start;
}

.revTop {
  display: flex;
  align-items: center;
  gap: 16px;
}

.revTop img {
  width: 56px;
  height: 56px;

  object-fit: cover;
}

.rev-title {
  font-size: 20px;
  font-weight: 700;
}

.rev-subtitle {
  font-size: 16px;
  color: #777;
  margin-top: 4px;
}

.rev-text {
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.5;
}


.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;
}

.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__title {
}
.stepsBlock__subtitle {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
}

.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 {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}

.step {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  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__media img {
  width: 100%;
  max-width: 294px;
  height: auto;
  display: block;
}

.step__phone {
  max-width: 260px;
}

.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 {
  font-size: 16px;
  font-weight: 700;
  color: #fbbc05;
  margin-bottom: 12px;
}

.step__kicker--blue {
  color: var(--bg-bt);
}
.step__kicker--green {
  color: var(--bg-bt-n);
}

.step__head {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 48px;
  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 {
  /* padding: 32px; */
  text-align: center;
  margin-top: 48px;
  border-radius: 10px;
}
.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 {
  margin: 80px 0px;
}
.final-bg {
  color: var(--text-n);
}

.final__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.final__text {
  max-width: 666px;
  width: 100%;
}
.final__text h2 {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: -0.3px;
  text-align: left;
}
.final__text p {
  font-weight: 400;
  margin-top: 24px;
  font-size: 16px;
  color: var(--tx2);
}
.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 {
  background: #f8f9fa;
  border-top: 1px solid #dadce0;
  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: 44px;
  align-items: start;
  margin-top: 48px;
}
.footerNew__left {
  width: 90%;
}
.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: var(--text-n);
}

.fCol__link {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--tx2);
}
.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: 18px;
  font-weight: 400;
  margin-top: 24px;
}

.legal__text {
  font-size: 18px;
  font-weight: 400;
  margin-top: 12px;
}

.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: #2f49ff;
  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: 48px;
  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 {
  max-width: 870px;
  margin: auto;
  text-align: center;
}
.about-box p {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
}
/* ===== BENEFITS ===== */
.benefits {
}

.benefits__card {
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 48px;
  overflow: hidden;
  background: var(--dark-brown);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0px 20px;
}

.benefits__left {
  /* padding: 32px; */
  color: var(--text-n);
}
.benefits__left p {
  margin-bottom: 24px;
  color: var(--tx2);
}
.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: 18px;
  line-height: 124%;
  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;
  border-radius: 8px;
}

.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 {
}

.aboutCta__box {
  max-width: 996px;
  text-align: center;
  margin: auto;
}

.aboutCta__text {
  font-size: 24px;
  font-weight: 700;
}
.aboutCtaTx2 {
  font-size: 18px;
  color: var(--text-n) !important;
}

.aboutCta__btn {
  margin-top: 24px;
  height: 67px;
}
.lt {
  color: var(--lt-text);
}

.lt__title {
  text-align: center;
  font-weight: 700;
  line-height: 1.06;
  font-size: 48px;
  margin-bottom: 48px;
  color: var(--text-n);
  max-width: 994px;
  margin-left: auto;
  margin-right: auto;
}

.lt-table {
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-brown);
  border: 1px solid #dadce0;
}

/* HEAD */
.lt-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 0.8fr;
  background-color: var(--dark-brown);
  border-bottom: 1px solid #dadce0;
  color: var(--text-n);
}

.lt-head > div {
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 700;
  border-right: 1px solid #dadce0;
}
.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 #dadce0;
  border-bottom: 1px solid #dadce0;
}

.lt-row:last-child .lt-cell {
  border-bottom: 0;
}
.lt-row .lt-cell:last-child {
  border-right: 0;
}

.lt-row--light {
  background: var(--w);
  color: var(--text-n);
}
.lt-row--dark {
  background: var(--dark-brown);
  color: var(--text-n);
}

.lt-cell--mono {
  font-variant-numeric: tabular-nums;
}
.lt-cell--investor {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lt-cell-cl{
  color:var(--bg-bt-n) ;
}
.lt-cell-cl2{
  color:var(--bg-bt2) ;
}

.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: 48px;
  text-align: start;
}

.profitCalc__left p {
  color: #555;
  margin-bottom: 48px;
  margin-top: 24px;
  font-weight: 400;
}

.profitCalc__card {
  background: var(--dark-brown);
  color: var(--text-n);
  border-radius: 10px;
  padding: 48px;
  max-width: 588px;
  width: 100%;
}

.calcBlock {
  margin-bottom: 24px;
}

.calcHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calcValue {
  background: var(--w);
  color: var(--bg-bt);
  padding: 6px;
  border-radius: 6px;
  font-weight: 700;
  max-width: 134px;
  width: 100%;
  text-align: center;
}
.cV-n {
  color: var(--bg-bt-n);
}
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: var(--w);
  color: #000;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  border: 1px solid #dadce0;
}

.calcResult strong {
  display: block;
  font-size: 48px;
  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: 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%
  );
}
.range--green {
  --accent: #109c35;
}
.range--blue {
  --accent: #1a73e8;
}

.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: #fff;
  /* padding: 80px 0px; */
}

.faq__title {
  margin-bottom: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: var(--dark-brown);
}
.faq__list {
  display: grid;
  gap: 1px;
  max-width: 996px;
  margin: 0 auto;
}

.faqItem {
  overflow: hidden;
  background: var(--dark-brown);
}
.faq-br {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq-br2 {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.faqItem__head {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;

  padding: 47px;
  text-align: left;
}

.faqItem__q {
  color: var(--w);

  font-size: 24px;
  line-height: 1.25;
}

.faqItem__icon {
  width: 32px;
  position: relative;
  display: grid;
  place-items: center;
}
.faqItem__icon::before,
.faqItem__icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.faqItem__icon::before {
  width: 14px;
  height: 2px;
}
.faqItem__icon::after {
  width: 2px;
  height: 14px;
}

.faqItem__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faqItem__inner {
  padding: 0px 47px 47px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.faqItem.is-open .faqItem__icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.faqItem__head:hover .faqItem__icon {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ===== DEMO ===== */
.demoSec {
}

.demoSec__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.demoSec__title {
  margin: 0 0 16px;
  text-align: center;
}

.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: stretch;
  margin-top: 12px;
  gap: 24px;
}
.demo2 {
  grid-template-columns: 1.4fr 1fr;
}
.demo3 {
  grid-template-columns: 0.7fr 1fr;
}
.demoCard {
  background: var(--bg2);
  border-radius: 10px;
  padding: 32px;
  color: var(--text-n);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}
.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 {
  border-radius: 10px;
  overflow: hidden;
  padding: 32px;
  background: var(--dark-brown);
}

.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-top: 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: var(--dark-brown);
  padding: 80px 0 90px;
  margin-top: 80px;
}

.demoBlock__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}

.demoBlock__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-n);
}

.demoBlock__subtitle {
  margin: 10px auto 34px;
  max-width: 620px;
  font-size: 13px;
  line-height: 1.6;
  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 {
  background: var(--w);
  border: 1px solid #dadce0;
  padding: 32px;
  border-radius: 8px;
}
.demoBlock__list {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.demoBlock__list li {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.55;
  color: var(--text-n);
}
.demoBlock__list li:last-child {
  margin-bottom: 0px;
}

.demoBlock__right {
  display: flex;
  justify-content: center;
}

.demoBlock__right img {
  max-width: 100%;
  height: auto;
  display: block;
}

.demoBlock__cta {
  margin-top: 48px;
}

.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);
}

.qaVoices__intro {
  margin: 14px auto 48px;
  /* max-width: 820px; */
  font-size: 14px;
  line-height: 1.7;
  color: var(--tx2);
}


.qaVoices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


.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: 190px;
  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__img {
    height: 170px;
  }
  .spanH {
    height: 0px;
  }
}
.qaLayout {
  padding: 90px 0;
}

.qaLayout__wrap {
}

.qaLayout__title {
  margin: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-n);
}

.qaLayout__subtitle {
  margin: 16px auto 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--tx2);
}

.qaLayout__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.qaLayout__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qaLayout__block {
  padding: 32px;
  border-radius: 8px;
}

.qaLayout__block--blue {
  background: #eaf1ff;
}
.qaLayout__block--green {
  background: #edf6ee;
}
.qaLayout__block--yellow {
  background: #fff6da;
}

.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: 22px;
  font-weight: 700;
  color: var(--text-n);
}

.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(--text-n);
}

.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: 48px;
}
.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;
  }
  .why{
    padding: 24px;
  }
  .cards__box {
    order: 2;
  }

  .why__img {
    order: 1;
  }
  .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;
  }
  .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: 60px 0px; */
  }
  .faq__title {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .faq__list {
    max-width: 720px;
    gap: 16px;
  }
  .faqItem__head {
    padding: 24px;
  }
  .faqItem__q {
    font-size: 20px;
  }
  .faqItem {
    border-radius: 10px;
  }
  .faqItem__inner {
    padding: 0 24px 24px;
  }
  .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;
  }
  .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;
  }
  .label {
    padding: 8px;
  }
  .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;
  }
  .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) {
  .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: 48px;
  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;
  }
}
