:root {
  --bg: #000000;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border-soft: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-footer: rgba(255, 255, 255, 0.77);
  --pink: #ff3fb2;
  --pink-glow: rgba(255, 63, 178, 0.22);
  --magenta-banner: #ff0099;
  --accent-lime: #d5ff00;
  --violet-blur: rgba(35, 22, 67, 0.66);
  --border-violet: #ae78f2;
  --btn-grad-1: rgb(17, 9, 60);
  --btn-grad-2: rgb(175, 10, 104);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 22px;
  --max: 1393px;
  --pad-x: clamp(20px, 5vw, 80px);
  --font-outfit: "Outfit", system-ui, sans-serif;
  --font-russo: "Russo One", sans-serif;
  --font-istok: "Istok Web", serif;
  --font-inter: "Inter", system-ui, sans-serif;
  --font-archivo: "Archivo", sans-serif;
  --font-oswald: "Oswald", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-outfit);
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
}

.page__glows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(125px);
  opacity: 0.9;
}

.glow--pink {
  background: rgb(247 43 98 / 67%);
}

.glow--violet {
  background: var(--violet-blur);
}

.glow--1 {
  width: min(1018px, 120vw);
  height: min(866px, 100vh);
  top: -12%;
  right: -18%;
}

.glow--2 {
  width: min(1256px, 130vw);
  height: 960px;
  top: 35%;
  left: -25%;
}

.glow--3 {
  width: min(972px, 90vw);
  height: min(972px, 90vw);
  top: 8%;
  left: -20%;
}

.glow--4 {
  width: min(1196px, 110vw);
  height: 1120px;
  bottom: -15%;
  right: -20%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--pad-x);
  backdrop-filter: blur(7px);
  background: rgba(10, 6, 21, 0.16);
  border-bottom: 1px solid var(--border-soft);
}

.header__logo img {
  width: clamp(160px, 40vw, 225px);
  height: auto;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header__menu-btn span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-istok);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--header,
.btn--primary {
  color: #fff;
  /*background-image: linear-gradient(143deg, var(--btn-grad-1) 0%, var(--btn-grad-2) 62%);*/
  background-image: linear-gradient(143deg, rgb(112 28 91) 17%, var(--btn-grad-2) 62%);
  box-shadow: 0 0 32px var(--pink-glow);
}

.btn--telegram {
  background: #fff;
  color: #000;
  font-family: var(--font-outfit);
  font-weight: 700;
  box-shadow: 0 0 32px var(--pink-glow);
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-columns: 869px 1fr;
  /*gap: clamp(24px, 4vw, 48px);*/
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 0px;
  /*padding: clamp(32px, 6vw, 72px) var(--pad-x) clamp(40px, 8vw, 100px);*/
}

.hero__copy{margin-left: 6vw;}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.12;
}

.hero__title-line {
  display: block;
  font-family: var(--font-russo);
  font-weight: 400;
  color: #fff;
}

.hero__title-gradient {
  display: block;
  font-family: var(--font-russo);
  background: linear-gradient(141deg, rgb(106, 121, 236) 0%, rgb(255, 63, 178) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 28px;
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 300;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
  max-width: 38ch;
}

.hero__subtitle strong {
  font-weight: 500;
  color: var(--accent-lime);
  letter-spacing: normal;
}

.hero__art {
  position: relative;
  justify-self: end;
  width: min(100%, 836px);
  opacity: 0.85;
}

.hero__art-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 50px);
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}

.section__title--center {
  text-align: center;
}

.section__lead {
  margin: 0;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.42;
  max-width: 52ch;
}

.section__lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 48rem;
}

.section--why {
  text-align: center;
  padding-top: 8px;
}

.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 17px;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 25px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(146px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card__text {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 28px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 16px 35px rgba(255, 47, 179, 0.18);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 47, 179, 0.22) 100%
  );
}

.feature-card__icon--blue {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 16px 35px rgba(92, 184, 255, 0.18);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05) 45%,
    rgba(92, 184, 255, 0.22) 100%
  );
}

.payments {
  max-width: var(--max);
  /*margin: 0 auto clamp(48px, 8vw, 96px);*/
  margin: 0 115px 96px;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 40px);
  border-radius: 36px;
  border: 0.99px solid #fff;
  background: var(--magenta-banner);
  box-shadow: 0 4.95px 154px rgba(255, 255, 255, 0.38);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
}

.payments__text{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payments__eyebrow {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 12.87px;
  letter-spacing: 0.23em;
}

.payments__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.2vw, 38.6px);
  font-weight: 700;
  line-height: 1.15;
}

.payments__desc {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 19.8px);
  line-height: 1.35;
  /*max-width: 36ch;*/
}

.payments__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payments__logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 52px;
  padding: 8px 20px;
  background: #fff;
  border-radius: 15.5px;
  border: 0.86px solid rgba(255, 255, 255, 0.1); */
}

.payments__logo-cell img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.payments__logo-cell--wide img {
  max-height: 28px;
}

.steps-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section--steps-head{max-width: 1354px;}

.section--steps-head .section__title {
  max-width: 18ch;
}

.section--steps-head .section__lead {
  max-width: 43ch;
}

.steps-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(48px, 8vw, 100px);
  display: grid;
  grid-template-columns: 0.9fr minmax(260px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  padding: 25px 12px 25px 16px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(146px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 160px;
}

.step-card__badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 35px;
  height: 35px;
  border-radius: 17.5px;
  background: #fff;
  color: #000;
  font-family: var(--font-archivo);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 16px 35px rgba(255, 47, 179, 0.18);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 47, 179, 0.22) 100%
  );
}

.step-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

.steps-block__visual {
  border-radius: 33px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.steps-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 38px 24px;
  border-radius: 24px;
  backdrop-filter: blur(69.5px);
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card__value {
  min-height: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fffefe;
}

.stat-card__num {
  font-family: var(--font-russo);
  font-size: clamp(40px, 6vw, 75px);
  line-height: 1;
  text-transform: uppercase;
}

.stat-card__label {
  margin: 16px 0 0;
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
}

.section--testimonials {
  padding-top: 24px;
}

.testimonial-slider {
  /*max-width: 1240px;*/
  margin: 32px auto 0;
  /*padding: 0 clamp(8px, 2vw, 24px);*/
  display: block;
}

.testimonial-slider__viewport {
  min-width: 0;
  overflow: hidden;
  padding: 8px 0;
}

.testimonial-slider__track {
  position: relative;
  height: clamp(210px, 18vw, 300px);
}

.testimonial {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(400px, calc(100% - 96px));
  max-width: 400px;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 16px;
  border: 1px solid var(--border-violet);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(146, 145, 145, 0.15));
  transition:
    padding 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: transform, opacity;
}

.testimonial--pos-left,
.testimonial--pos-right {
  opacity: 0.88;
  transform: translate3d(calc(-50% + (var(--pos) * 420px)), 10px, 0) scale(0.97);
  padding: clamp(14px, 1.8vw, 18px);
}

.testimonial--pos-left .testimonial__quote,
.testimonial--pos-right .testimonial__quote {
  font-size: clamp(12px, 1.2vw, 14px);
}

.testimonial--pos-center {
  opacity: 1;
  transform: translate3d(calc(-50% + (var(--pos) * 420px)), 0, 0) scale(1.02);
  z-index: 1;
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.2vw, 26px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  border-color: rgba(174, 120, 242, 0.9);
}

.testimonial:not(.testimonial--pos-left):not(.testimonial--pos-center):not(.testimonial--pos-right) {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0) scale(0.95);
}

.testimonial--pos-center .testimonial__quote {
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.45;
}

.testimonial--pos-center .testimonial__name {
  font-size: clamp(14px, 1.3vw, 18px);
}

.testimonial--pos-center .testimonial__meta {
  font-size: 12px;
}

.testimonial__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial__avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
  transition: width 0.35s ease, height 0.35s ease;
}

.testimonial__name {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  transition: font-size 0.35s ease;
}

.testimonial__meta {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--text-muted);
  transition: font-size 0.35s ease;
}

.testimonial__quote {
  margin: auto 0 0;
  font-weight: 700;
  text-align: center;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.45;
  transition: font-size 0.35s ease, line-height 0.35s ease;
}

.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0 20px;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-slider__dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.traffic {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px;
  /*padding: clamp(40px, 6vw, 80px) var(--pad-x);*/
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.traffic__channels img {
  width: min(100%, 734px);
  margin-top: 24px;
}

.traffic__chart {
  opacity: 0.85;
  max-width: min(349px, 80vw);
  justify-self: end;
}

.partner {
  max-width: 1213px;
  margin: 0 auto clamp(48px, 8vw, 100px);
  padding: clamp(40px, 5vw, 58px) clamp(24px, 6vw, 118px) clamp(40px, 5vw, 52px);
  text-align: center;
  border-radius: 54px;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #fff;
}

.partner__title {
  margin: 0 0 20px;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
}

.partner__text {
  margin: 0 auto 28px;
  /* max-width: 52ch; */
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.45;
}

.faq {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px 100px;
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.faq__sidebar-title {
  max-width: 16ch;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-lg);
  backdrop-filter: blur(146px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: clamp(15px, 2vw, 20px);
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.faq-item__chev {
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.faq-item__chev--open {
  transform: rotate(0deg);
}

.faq-item__divider {
  margin: 16px 0;
  line-height: 0;
}

.faq-item__divider img {
  width: 100%;
  height: 2px;
}

.faq-item__panel {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
}

.faq-item__panel[hidden] {
  display: none;
}

.footer {
  position: relative;
  z-index: 1;
  max-width: 1496px;
  margin: 0 auto 0;
  padding: clamp(40px, 6vw, 73px) var(--pad-x);
  /*border-radius: 45px 45px 0 0;*/
  backdrop-filter: blur(175px);
  background: rgba(255, 255, 255, 0.04);
  /*border: 1px solid rgba(255, 255, 255, 0.08);*/
  border-bottom: none;
  text-align: center;
}

.footer__logo {
  margin: 0 auto 24px;
  max-width: 236px;
  height: auto;
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 20px;
  font-family: var(--font-archivo);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-footer);
}

.footer__trust-sep {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__legal {
  max-width: 1122px;
  margin: 0 auto 24px;
  font-family: var(--font-istok);
  font-size: clamp(14px, 1.6vw, 20px);
  color: var(--text-footer);
  line-height: 1.5;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.footer__badge-age {
  background: #fff;
  border: 1px solid #654e4e;
  border-radius: 3px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
}

.footer__copy {
  font-family: var(--font-istok);
  font-weight: 700;
  font-size: 14px;
}

.footer__copy p {
  margin: 0 0 6px;
}

.footer__copy img {
  margin: 12px auto 0;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__art {
    justify-self: center;
    /*order: -1;*/
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-block {
    grid-template-columns: 1fr;
  }

  .steps-block__visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .traffic {
    grid-template-columns: 1fr;
  }

  .traffic__chart {
    justify-self: center;
  }

  .faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header__menu-btn {
    display: flex;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px var(--pad-x) 20px;
    background: rgba(10, 6, 21, 0.95);
    border-bottom: 1px solid var(--border-soft);
    display: none;
    justify-content: flex-end;
  }

  .header__nav.is-open {
    display: flex;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .testimonial-slider__track {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .testimonial {
    position: static;
    width: 100%;
    max-width: none;
    opacity: 1;
    transform: none !important;
  }

  .payments {
    flex-direction: column;
    align-items: stretch;
    margin: 0 20px 96px;
  }

  .payments__logos {
    justify-content: center;
  }

  .steps-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }

  .faq-item__chev {
    transition: none;
  }

  .testimonial {
    transition: none;
  }

  .testimonial__avatar,
  .testimonial__name,
  .testimonial__meta,
  .testimonial__quote {
    transition: none;
  }
}
/* MOBILE ONLY - one by one sliding effect */
@media (max-width: 767px) {
  .traffic__chart {
        justify-self: center;
        position: absolute;
        opacity: 0.2;
    }
  .testimonial-slider {
    overflow: hidden;
    width: 100%;
  }

  .testimonial-slider__viewport {
    overflow: hidden;
    width: 100%;
  }

  .testimonial-slider__track {
    position: relative;
    width: 100%;
    min-height: 200px; /* adjust height */
  }

  .testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  /* center active */
  .testimonial--pos-center {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
  }

  /* previous */
  .testimonial--pos-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 2;
  }

  /* next */
  .testimonial--pos-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
  }
  .feature-card {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(146px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.feature-card__text {
    margin: 0;
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}
.feature-card__icon {
    width: 46px;
    height: 46px;
}
}
