@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --wrap: 1200px;

  --blue: #009964;
  --blue2: #01c37f;
  --blue3: #00774d;

  --dark-blue: #030016;

  --dark: #070a18;
  --bg-dark: #030016;
  --w: #ffffff;

  --r: 18px;
  --shadowDark: 0 18px 50px rgba(0, 0, 0, 0.25);

  --red: rgba(255, 46, 46, 1);

  --lt-line: rgba(255, 255, 255, 0.14);
  --lt-line2: rgba(255, 255, 255, 0.1);
  --lt-text: rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--bg-dark);
  background: var(--w);
  overflow-x: hidden;
  font-family: "Kanit", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
}

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: 500;
}
h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}
p {
  margin: 0px;
}
.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;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  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: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-weight: 500;
}
.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(--blue);
  font-weight: 400;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 32px;
  font-weight: 500;
  font-size: 18px;
  border: none;
  cursor: pointer;
  cursor: pointer;
  background: var(--blue);
  color: var(--w);
}
.btn--blue {
  padding: 20px 48px;
}
.btn:hover {
  background: var(--blue2);
  color: #fff;
  box-shadow: 0 2px 13px var(--blue2);
}
.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;
}
.btn--mid {
}

/* ===== HERO (white) ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.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: 620px;
  width: 100%;
}
.hero__text {
  max-width: 588px;
  width: 100%;
}
.hero__text h1 {
  margin: 0 0 24px;
  font-size: 60px;
  line-height: 110%;
  font-weight: 500;
}
.hero__text p {
  margin: 0;
  color: var(--bg-dark);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  max-width: 560px;
}
.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-blue);
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  max-width: 486px;
  width: 100%;
  padding: 48px;
}
.leadCard__cap {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}
.leadForm {
}
.leadForm label {
  display: block;
  margin-bottom: 16px;
}
.leadForm span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: var(--dark);
  opacity: 60%;
  margin-bottom: 2px;
}
.leadForm input {
  width: 100%;
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 300;
  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: 8px;
  padding: 8px 12px;
}
.grid-two {
  grid-template-columns: 1fr 1fr;
}
.hero__tx h1 {
  margin: 0 0 24px;
  font-size: 60px;
  line-height: 110%;
  font-weight: 500;
}
.hero__tx p {
  font-size: 24px;
  line-height: 28px;
  max-width: 540px;
}
.formMg {
  margin-left: auto;
}
.form__subtitle {
  font-size: 12px;
  line-height: 17px;
  font-weight: 300;
  margin-top: 32px;
}
.form__link {
  color: var(--blue);
}
/* ===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: 200px;
  max-width: 200px;
  height: 88px;
  padding: 8px 12px;

  border-radius: 16px;
  background: var(--dark-blue);
  color: var(--w);
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  align-items: center;
}

.liveCard__ava {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  grid-row: 1 / span 2;
}

.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: space-between;
  gap: 4px;
  margin-top: 2px;
}
.row-liv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 122px;
}
.liveCard__label {
  opacity: 0.75;
  font-size: 16px;
  font-weight: 300;
}

.liveCard__val {
  color: #22ff22;
  font-weight: 500;
  font-size: 16px;
}

.liveCard__up {
  font-size: 12px;
  color: #22ff22;
  font-weight: 500;
  text-align: end;
}

@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 {
}

.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-right: 12px;
}

/* pill */
.logoPill {
  height: 64px;
  width: 192px;
  padding: 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;
  background: var(--bg-dark);
  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 {
}

.profit__wrap {
  margin: 0 auto;
}

.profit__title {
  margin: 0;
  text-align: center;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 500;
}

.profit__subtitle {
  margin: 16px 0px 48px 0px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.profit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 34px; /* як на скріні */
  margin-top: 6px;
}

.pCard {
  height: 124px;
  border-radius: 30px;
  background: rgba(243, 242, 255, 1);
  border: 1px solid rgba(230, 227, 255, 1);
  display: flex;
  overflow: hidden;
}

.pCard__badge {
  width: 124px;
  min-width: 124px;

  background: var(--bg-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  border-radius: 30px;
  margin: 0 48px 0 0;
}

.pCard__percent {
  font-size: 32px;
  font-weight: 500;

  line-height: 34px;
}

.pCard__label {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.85;
}

.pCard__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

.pCard__head {
  font-size: 32px;
  font-weight: 500;
  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: 300;
}

/* features two columns */
.sec--white-bg {
  background-color: #f3f2ff;
  border-radius: 60px;
  border: 1px solid #e6e3ff;
  padding: 80px 0px;
  margin-top: 80px;
}
.two {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: stretch;
  margin-top: 48px;
}
.two-title {
  max-width: 996px;
  margin: auto;
}
.two-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
  max-width: 996px;
  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: 300;
  margin-top: 8px;
}
.two-btn {
  margin: 48px auto 0 auto;
  display: flex;
  justify-content: center;
  max-width: 209px;
}
.twoB {
  display: none;
}

.tx-accent {
  color: var(--red);
  font-weight: 400;
}

.featureList {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 588px;
  width: 100%;
}

.featureItem {
  display: block;
}

.featureItem__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featureItem__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featureItem__icon svg {
  width: 12px;
  height: 12px;
}

.featureItem__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.featureItem__desc {
  margin-top: 12px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
}

/* 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;
}
.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}
.cards__box {
  background: var(--bg-dark);
  color: var(--w);
  border-radius: 30px;
  padding: 32px;
  font-size: 18px;
  font-weight: 300;
}
.cards__box:last-child {
  margin-bottom: 0;
}
.qcard {
  font-size: 18px;
  font-weight: 300;
  margin-top: 12px;
}

.why__img {
  border-radius: 30px;
  overflow: hidden;
}
.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 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 16px;
  margin-top: 80px;
}
.legit {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
  align-items: center;
  margin-top: 40px;
}
.stamp {
  margin-left: auto;
}
.title--cn {
  text-align: center;
}
.sub {
  font-weight: 300;
  margin-bottom: 24px;
}
.sub:last-child {
  margin-bottom: 0;
}

.revWide {
  margin-top: 48px;
}

.revWide__inner {
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: 0;
}

.rev__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 6px 0 10px;
  padding-right: 200px;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rev__track::-webkit-scrollbar {
  display: none;
}

.revCard {
  flex: 0 0 385px;
  scroll-snap-align: start;

  border-radius: 30px;
  background: var(--bg-dark);
  color: var(--w);
  padding: 24px;
}
.revTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rev-title {
  font-size: 24px;
  line-height: 24px;
}
.rev-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-top: 4px;
  color: #74727f;
  line-height: 20px;
}
.rev-text {
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
}

.rev__nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.navBtn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: var(--bg-dark);
  color: #fff;
  cursor: pointer;

  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.navBtn:not(.is-disabled):hover {
  background: linear-gradient(135deg, #1c00ff, #3b4bff);
  box-shadow: 0 8px 20px rgba(59, 75, 255, 0.35);
  transform: translateY(-2px);
}

.navBtn:not(.is-disabled):active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(59, 75, 255, 0.25);
}

.navBtn.is-disabled {
  background: rgba(11, 16, 38, 0.35);
  color: rgba(255, 255, 255, 0.35);
  cursor: default;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .revWide__inner {
    padding-left: max(16px, calc((100vw - 1100px) / 2));
  }
}

@media (max-width: 560px) {
  .revCard {
    flex-basis: 347px;
  }
  .revWide {
    margin-top: 24px;
  }
  .rev-title {
    font-size: 20px;
  }
  .rev-subtitle {
    font-size: 16px;
  }
  .rev-text {
    font-size: 16px;
  }
}

/* ===== STEPS BLOCK =====  */

.stepsBlock__title {
}

/* ===== STEP LINE ===== */
.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: 500;
  color: var(--blue);
  margin-bottom: 12px;
}

.stepLine__label--active {
  color: var(--blue);
}

.stepLine__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  margin: 0 auto;
}

.stepLine__dot--active {
  background: var(--blue);
}

/* ===== GRID ===== */
.stepsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.sCard {
  text-align: center;
}

.sCard__mStep {
  display: none;
  font-size: 20px;
  font-weight: 500;
  color: #1c00ff;
  margin-bottom: 16px;
}

.sCard__img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
}

.sCard__img img {
  width: 100%;
  max-width: 368px;
  height: 244px;
  display: block;
}

.sCard__img--phone img {
  width: 160px;
}

.sCard__head {
  font-size: 24px;

  text-transform: uppercase;
  line-height: 27px;
}

.sCard__text {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  max-width: 330px;
  margin-inline: auto;
}

.stepsBlock__cta {
  padding: 32px;
  text-align: center;
  margin-top: 48px;
  border-radius: 30px;
}
.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-bg {
  background-image: url(../images/bg-ft.png);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 60px;
  border-top-left-radius: 60px;
}
.final {
}
.final__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.final__text {
  max-width: 588px;
  width: 100%;
}
.final__text h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.3px;
  text-align: left;
}
.final__text p {
  font-weight: 300;
  margin-top: 24px;
}
.final__text-bg {
  background-color: rgba(243, 242, 255, 1);
  border: 1px solid rgba(230, 227, 255, 1);
  border-radius: 16px;
  color: var(--bg-dark);
  padding: 24px;
  font-weight: 500 !important;
}
/* footer */
.footerNew {
  background: var(--bg-dark);
  padding: 80px 0 80px;
}

.footerNew__wrap {
  width: min(1200px, 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: center;
}
.footerNew__payments img {
  max-height: 32px;
  width: auto;
  display: block;
}

.payI {
}

/* main grid */
.footerNew__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 44px;
  align-items: start;
  margin-top: 48px;
}

.footerNew__left p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgb(255 255 255 / 64%);
}

.footerNew__right {
  padding-top: 6px;
}

.fCol {
  margin-bottom: 32px;
}
.fCol__title {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.fCol__link {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}
.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: 500;
  margin: 0px;
}

.legal__heading {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
}
.legal__heading2 {
  font-size: 18px;
}
/* ===== Text ===== */
.legal__intro {
  font-size: 18px;
  font-weight: 300;
  margin-top: 24px;
}

.legal__text {
  font-size: 18px;
  font-weight: 300;
  margin-top: 12px;
}

/* ===== Sections ===== */
.legal__section {
  margin-top: 48px;
}

/* ===== Lists ===== */
.legal__list {
  margin: 12px 0px 0px 30px;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
}

.legal__list li {
  margin-bottom: 6px;
}
.legal__list li span {
  font-weight: 500;
}

/* ===== Links ===== */
.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: 500;
  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;
}

/* ===== BLOCK 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: 300;
  line-height: 125%;
}
.aboutBlock__text p:last-child {
  margin-bottom: 0;
}

/* ===== BENEFITS CARD ===== */
.benefits {
}

.benefits__card {
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-dark);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  grid-template-rows: auto auto;
}

.benefits__left {
  padding: 32px;
}

.benefits__title {
  margin: 0 0 16px;
  color: var(--w);
  font-size: 24px;
  font-weight: 500;
}

.benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits__list li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  font-size: 18px;
  line-height: 124%;
  font-weight: 300;
  color: var(--w);
}

.benefits__plus {
  content: "";
  background-image: url(../images/star.svg);
  width: 100%;
  max-width: 12px;
  height: 12px;
  background-size: cover;
}

.benefits__right {
  max-width: 588px;
  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 {
}

.aboutCta__box {
  background: rgba(243, 242, 255, 1);
  border-radius: 30px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(230, 227, 255, 1);
}

.aboutCta__text {
}

.aboutCta__btn {
  margin-top: 24px;
  height: 67px;
}
.lt {
  padding: 80px 5px;
  background-color: #030016;

  color: var(--lt-text);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

.lt__title {
  text-align: center;
  font-weight: 800;
  line-height: 1.06;
  font-size: clamp(22px, 2.2vw, 36px);
  margin-bottom: 48px;
}

.lt-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* HEAD */
.lt-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 0.8fr;
  background-color: #f3f2ff;
  border-bottom: 1px solid #030016;
  color: #030016;
}

.lt-head > div {
  padding: 12px 14px;
  font-size: 12px;
  border-right: 1px solid var(--lt-line);
}
.lt-head > div:last-child {
  border-right: 0;
}

/* BODY */
.lt-body {
  overflow: hidden;
}
.lt-track {
  will-change: transform;
}

/* ROW */
.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 var(--lt-line2);
  border-bottom: 1px solid var(--lt-line2);
}

.lt-row:last-child .lt-cell {
  border-bottom: 0;
}
.lt-row .lt-cell:last-child {
  border-right: 0;
}

/* ZEBRA */
.lt-row--light {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016));
}
.lt-row--dark {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006));
}

/* CELLS */
.lt-cell--mono {
  font-variant-numeric: tabular-nums;
}
.lt-cell--investor {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AVATAR */
.lt-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* CALC */

.profitCalc {
  display: flex;
  margin-bottom: 80px;
  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: 300;
}

.profitCalc__card {
  background: var(--dark-blue);
  color: #fff;
  border-radius: 30px;
  padding: 60px;
  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(--blue);
  padding: 8px;
  border-radius: 8px;
  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: 300;
  opacity: 0.6;
}

.calcResult {
  background: #f2f3ff;
  color: #000;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.calcResult strong {
  display: block;
  font-size: 48px;
  color: var(--blue);
  line-height: 50px;
}

.calcResult small {
  display: block;
  margin-top: 4px;
  font-weight: 600;
}
.btnCalc {
  margin-top: 24px;
  color: #fff;
  padding: 28px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: none;
  font-size: 18px;
}

/* ===== FAQ wrapper ===== */
.faq {
  background: #fff;
  padding: 80px 0px;
}

.faq__title {
  margin-bottom: 48px;
  text-align: center;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.15;
  color: var(--dark-blue);
}
.faq__list {
  display: grid;
  gap: 16px;
  max-width: 996px;
  margin: 0 auto;
}

.faqItem {
  border-radius: 38px;
  overflow: hidden;
  background: var(--dark-blue);
}

.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: 300;
  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 SECTION (like screenshot) ===== */
.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: 18px;
  font-weight: 300;
}

.demoSec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 12px;
}

/* left dark card */
.demoCard {
  background: var(--dark-blue);
  border-radius: 30px;
  padding: 32px;
  color: var(--w);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.demoCard p {
  margin: 0 0 24px;
}
.demoCard p:last-child {
  margin-bottom: 0;
}
.demoCard b {
  color: #fff;
  font-weight: 700;
}

.demoImg {
  border-radius: 22px;
  overflow: hidden;
  min-height: 250px;
}

.demoImg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.demoSec__note {
  max-width: 980px;
  margin: 48px auto 24px;
  text-align: center;
}

/* button */
.demoSec__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 38px;
  padding: 0 18px;
  margin: 0 auto;
  border-radius: 8px;
  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);
}



/* ========= 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;
  }
}

@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;
  }
  .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;
  }

  .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(1200px, calc(100% - 44px));
  }
  .footerNew__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .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;
  }
  .benefits__right img {
    height: 240px;
  }
  .benefits__right {
    margin: 0;
    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: 30px;
  }
  .faqItem__inner {
    padding: 0 24px 24px;
  }
   .demoSec__grid {
    grid-template-columns: 1fr;
  }
  .demoImg {
    min-height: 220px;
  }
  .demoSec__title {
    font-size: 30px;
  }
}
@media (max-width: 930px) {
  p {
    font-size: 16px;
  }
  .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;
  }

  .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 {
    padding: 24px;
  }
  .aboutCta__btn {
    width: 100%;
  }
  .profitCalc__card {
    padding: 24px;
  }
  .calcResult strong {
    font-size: 28px;
    line-height: 32px;
  }
  .calcResult {
    padding: 16px;
  }
  .legit-bg{
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .hero__bg {
    max-width: 520px;
  }
  .hero__text h1 {
    font-size: 36px;
    margin: 0 0 16px;
  }
  .hero__text {
    text-align: left;
  }
  .title {
    font-size: 28px;
    margin-bottom: 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: 44px 0 52px;
  }
  .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;
  }
}

@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 {
    flex-direction: column;
    padding: 16px 0px;
  }

  .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;
  }

  .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;
  }
}
@media (max-width: 380px) {
  .chip {
    height: 26px;
    font-size: 11px;
  }
  .btn--blue{
        padding: 20px 46px;

  }
}
