@font-face {
  font-family: YekanBakh;
  src: url("../fonts/YekanBakhFaNum-Light.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: YekanBakhBold;
  src: url("../fonts/YekanBakhFaNum-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
body {
  font-family: YekanBakh, sans-serif;
  background: #07070d;
  color: #fff;
  padding-top: var(--header-height, 60px) !important;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  padding-top: var(--fx-header-height) !important;
  padding-top: 0 !important;
  padding-top: var(--fx-header-height, 79px) !important;
}
.promo-video__desc {
  color: var(--Dark-Text-TX1, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.32px;
}
.hero-subtitle {
  margin-top: 12px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  color: #fff !important;
}
button.btn.btn-primary.cta {
  color: #fff !important;
}
.container {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 72px 0;
}
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s;
  will-change: transform, box-shadow, filter;
}
.btn-primary {
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #5d63ff 0, #373cf5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(69, 70, 255, 0.22);
  background-image:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, #5d63ff 0, #373cf5 100%);
  background-size:
    220% 100%,
    100% 100%;
  background-position:
    -140% 0,
    0 0;
  animation: 3.6s ease-in-out infinite fx-shimmer;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(93, 99, 255, 0) 0deg,
    rgba(93, 99, 255, 0) 45deg,
    rgba(93, 99, 255, 0.95) 95deg,
    rgba(125, 140, 255, 0.95) 145deg,
    rgba(95, 210, 255, 0.85) 200deg,
    rgba(93, 99, 255, 0) 250deg,
    rgba(93, 99, 255, 0) 360deg
  );
  filter: blur(18px);
  opacity: 0.75;
  animation:
    4s linear infinite fx-neon-spin,
    2.8s ease-in-out infinite fx-neon-breathe;
  pointer-events: none;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0,
    rgba(140, 155, 255, 0.45) 25%,
    rgba(93, 99, 255, 0.95) 50%,
    rgba(55, 60, 245, 0.95) 75%,
    rgba(255, 255, 255, 0.35) 100%
  );
  background-size: 220% 220%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  animation: 3s linear infinite fx-border-flow;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05) saturate(1.08);
}
.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(69, 70, 255, 0.32),
    0 0 26px rgba(93, 99, 255, 0.28),
    0 0 56px rgba(95, 210, 255, 0.14);
  background-position:
    140% 0,
    0 0;
  animation: 1.4s ease-in-out infinite fx-shimmer-fast;
}
.btn-primary:hover::before {
  inset: -14px;
  opacity: 1;
  filter: blur(24px);
  animation:
    1.3s linear infinite fx-neon-spin,
    1s ease-in-out infinite fx-neon-breathe-hover;
}
.btn-primary:hover::after {
  opacity: 1;
  animation: 1.5s linear infinite fx-border-flow;
}
.btn:active {
  transform: translateY(-1px);
}
@keyframes fx-border-flow {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}
@keyframes fx-neon-spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fx-neon-breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.03);
  }
}
@keyframes fx-neon-breathe-hover {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1.01);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes fx-shimmer {
  0%,
  55% {
    background-position:
      -140% 0,
      0 0;
  }
  100% {
    background-position:
      160% 0,
      0 0;
  }
}
@keyframes fx-shimmer-fast {
  0% {
    background-position:
      -120% 0,
      0 0;
  }
  100% {
    background-position:
      160% 0,
      0 0;
  }
}
.btn.btn-primary.cta,
.btn.btn-primary.cta:active,
.btn.btn-primary.cta:focus,
.btn.btn-primary.cta:hover {
  font-size: 19px;
  line-height: 44px;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.header {
  background: #05050a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.logo img {
  width: 120px;
  display: block;
}
.hero-inner {
  min-height: 475px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  direction: rtl;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 56px;
  direction: rtl;
}
.tether {
  width: 84px;
  left: 465px;
  top: 350px;
  z-index: 4;
}
.content {
  direction: rtl;
  text-align: right;
  padding-right: 12px;
}
.title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 14px;
  color: #fff;
}
.cta {
  min-width: 258px;
  height: 56px;
  font-size: 19px;
  border-radius: 12px;
}
.section-hero {
  background: #07070d;
}
.hero-text {
  text-align: right;
}
.benefits-head h2,
.hero-text h2 {
  font-size: 32px;
  font-family: YekanBakhbold;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
  line-height: 40px;
}
.hero-text p {
  font-size: 16px;
  font-family: YekanBakh;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
.hero-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.benefits-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.benefit-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 18px 34px rgba(0, 0, 0, 0.24);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.benefit-card p {
  flex: 1;
}
.icon-wrap {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon-award svg,
.icon-profit svg,
.icon-search img,
.icon-search svg {
  width: 98px;
  height: auto;
  object-fit: contain;
}

.icon-profit img {
  width: 200px;
}
.referral-steps {
  direction: rtl;
}
.referral-steps__line {
  box-shadow: 0 0 14px rgba(76, 72, 255, 0.75);
}
.referral-steps__dot {
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(117, 111, 255, 0.38),
    rgba(71, 64, 212, 0.88) 58%,
    rgba(39, 35, 95, 0.96) 100%
  );
  box-shadow:
    0 0 0 6px rgba(73, 64, 211, 0.14),
    0 0 24px rgba(81, 75, 255, 0.55),
    inset 0 1px 8px rgba(255, 255, 255, 0.18);
}
.ref-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -16px 32px rgba(255, 255, 255, 0.02),
    0 10px 30px rgba(0, 0, 0, 0.22);
}
.ref-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.03)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ref-card__body {
  flex: 1;
}
.ref-card__body a {
  display: inline-block;
}
.ref-card__icon {
  flex: 0 0 42px;
  display: grid;
  place-items: center;
}
.fxpay-about {
  direction: rtl;
  background: #07070d;
  padding: 96px 0 72px;
  overflow: hidden;
}
.fxpay-about__container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}
.fxpay-about__header {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}
.fxpay-about__header h2 {
  margin: 0;
  color: #fff;
}
.fxpay-about__header p {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.9);
}
.fxpay-about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.fxpay-card {
  position: relative;
  min-height: 530px;
  padding: 34px 28px 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 31, 0.98),
    rgba(11, 11, 20, 0.98)
  );
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.28);
}
.fxpay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32),
    rgba(255, 255, 255, 0.06)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.fxpay-card--right {
  box-shadow:
    inset 0 0 0 1px rgba(96, 90, 255, 0.34),
    inset 0 0 42px rgba(88, 80, 255, 0.08),
    0 0 30px rgba(79, 73, 255, 0.18);
}
.fxpay-card--right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0, rgba(88, 80, 255, 0.24), transparent 38%),
    radial-gradient(
      circle at 50% 100%,
      rgba(88, 80, 255, 0.08),
      transparent 42%
    );
  pointer-events: none;
}
.fxpay-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.fxpay-card__content h3 {
  font-family: YekanBakhBold;
  margin: 0 0 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
}
.fxpay-card__content p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 400;
  line-height: 2.05;
}
.fxpay-card__visual {
  position: relative;
  height: 330px;
  margin-top: 18px;
}
.fxpay-card__visual--image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fxpay-card__img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
}
.services-tools {
  background: #080811;
  padding: 88px 0 110px;
  direction: rtl;
  overflow: hidden;
}
.services-tools__inner {
  margin: 0 auto;
}
.services-tools__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}
.services-tools__title {
  margin: 0;
  color: #fff;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.services-tools__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(41, 53, 123, 0.34);
  color: #6f7cff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(77, 95, 211, 0.12);
}
.services-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
}
.service-card {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(17, 18, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -18px 40px rgba(0, 0, 0, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}
.service-card__top {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
}
.service-card__top h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}
.service-card p {
  margin: 0;
  font-weight: 400;
}
.service-card__icon {
  flex: 0 0 32px;
  display: grid;
  place-items: center;
}
.service-card__icon svg {
  display: block;
}
.service-card--active {
  border: 1px solid rgba(78, 87, 255, 0.9);
  background:
    radial-gradient(circle at 50% 0, rgba(59, 76, 246, 0.22), transparent 55%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(18, 19, 34, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(79, 90, 255, 0.24),
    0 0 26px rgba(54, 70, 255, 0.28),
    0 10px 30px rgba(0, 0, 0, 0.32);
}
.service-card__cursor {
  position: absolute;
  right: 50%;
  bottom: -18px;
  transform: translateX(50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.service-card__cursor svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}
.section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
}
.faq-section {
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-column {
  display: grid;
  gap: 18px;
}
.faq-item {
  background: linear-gradient(
    180deg,
    rgba(18, 26, 45, 0.96),
    rgba(10, 16, 29, 0.96)
  );
  border: 1px solid var(--card-border);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item:hover {
  border-color: rgba(93, 99, 255, 0.65);
  box-shadow:
    0 20px 40px rgba(76, 72, 255, 0.12),
    0 0 0 1px rgba(93, 99, 255, 0.15);
  transform: translateY(-2px);
}
.faq-item.is-open {
  border-color: rgba(93, 99, 255, 0.35);
  box-shadow:
    0 24px 48px rgba(76, 72, 255, 0.14),
    0 0 0 1px rgba(93, 99, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.faq-item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 72px 22px 24px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  user-select: none;
  transition:
    background 0.35s,
    color 0.35s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  background: rgba(93, 99, 255, 0.06);
  color: #f7f8ff;
}
.faq-item summary::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 37px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid #d6def5;
  border-bottom: 2px solid #d6def5;
  transform: translateY(-65%) rotate(-45deg);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s;
}
.faq-item.is-open summary::before {
  background: radial-gradient(
    circle at center,
    rgba(95, 124, 255, 0.9),
    rgba(123, 77, 255, 0.9)
  );
  box-shadow:
    0 0 24px rgba(95, 124, 255, 0.4),
    0 0 60px rgba(95, 124, 255, 0.15);
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
}
.faq-item.is-open summary::after {
  transform: translateY(-35%) rotate(135deg);
  border-color: #fff;
}
.faq-content {
  overflow: hidden;
  position: relative;
  padding: 14px 28px 24px;
}
.faq-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(95, 124, 255, 0.25) 30%,
    rgba(123, 77, 255, 0.25) 70%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.faq-item.is-open .faq-content::before {
  opacity: 1;
}
.faq-content p {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 2.1;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.is-open .faq-content p {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }
}
.cta-box {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid rgba(122, 154, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.28);
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
  opacity: 0.22;
  pointer-events: none;
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: auto 50% -80px auto;
  width: 320px;
  height: 320px;
  transform: translateX(50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(87, 132, 255, 0.26),
    transparent 65%
  );
  pointer-events: none;
}
.cta-box h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.3;
}
.cta-box p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 28px;
  color: #d7e1f3;
  font-size: 16px;
  line-height: 2;
}
.cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 30px rgba(104, 82, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(104, 82, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 45px 0 55px;
    gap: 16px;
  }
  .content {
    order: 1;
    text-align: center;
    padding-right: 0;
  }
  .title {
    font-size: 44px;
  }
  .services-tools__inner {
    width: min(100%, calc(100% - 40px));
  }
  .services-tools__title {
    font-size: 38px;
  }
  .services-tools__grid {
    gap: 24px 20px;
  }
}
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-text {
    text-align: center;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    min-height: unset;
  }
  .fxpay-about__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .referral-steps__timeline {
    height: auto;
    display: grid;
    gap: 16px;
    padding-right: 78px;
  }
  .referral-steps__line {
    right: 28px;
    left: auto;
    transform: none;
    top: 10px;
    bottom: 10px;
  }
  .ref-card,
  .referral-steps__dot {
    position: relative;
  }
  .referral-steps__dot {
    right: 0;
    left: auto;
    transform: none;
    margin-bottom: -72px;
  }
  .ref-card,
  .ref-card--left,
  .ref-card--right {
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }
  .referral-steps__dot--1,
  .referral-steps__dot--2,
  .referral-steps__dot--3,
  .referral-steps__dot--4,
  .referral-steps__dot--5 {
    top: auto;
  }
  .services-tools__grid {
    grid-template-columns: 1fr;
  }
  .services-tools__head {
    flex-direction: column;
    gap: 12px;
  }
  .services-tools__title {
    font-size: 30px;
    text-align: center;
  }
  .service-card {
    min-height: auto;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .fx-faq-cta {
    padding: 72px 16px 56px;
  }
  .cta-box {
    padding: 42px 18px;
    border-radius: 24px;
  }
  .faq-item summary {
    padding: 18px 64px 18px 18px;
    font-size: 15px;
  }
  .faq-item summary::before {
    right: 18px;
  }
  .faq-item summary::after {
    right: 31px;
  }
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 48px 0;
  }
  .hero-inner {
    padding: 30px 0 40px;
  }
  .title {
    font-size: 34px;
  }
  .cta {
    width: 100%;
    min-width: 0;
    font-size: 17px;
  }
  .benefits-head h2,
  .hero-text h2 {
    font-size: 30px;
  }
  .benefits-head {
    flex-direction: column;
  }
  .fxpay-about {
    padding: 76px 0 56px;
  }
  .fxpay-about__container {
    width: min(100% - 28px, 1280px);
  }
  .fxpay-about__header h2 {
    font-size: 34px;
  }
  .fxpay-about__header p {
    font-size: 16px;
    line-height: 1.9;
  }
  .fxpay-card {
    min-height: auto;
    padding: 26px 18px 22px;
  }
  .fxpay-card__content h3 {
    font-size: 24px;
  }
  .fxpay-card__content p {
    font-size: 15px;
  }
  .fxpay-card__visual {
    height: 260px;
    transform: scale(0.88);
    transform-origin: center top;
  }
}
@media (max-width: 767px) {
  .header {
    background: #080913;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    flex-shrink: 0;
  }
  .logo img {
    width: 120px;
    height: auto;
    display: block;
  }
  .btn {
    height: 50px;
    min-width: 90px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 44px;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(180deg, #7c88ff 0, #5c6cff 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 2px 6px rgba(255, 255, 255, 0.24),
      0 8px 18px rgba(92, 108, 255, 0.25);
  }
  .referral-steps {
    padding: 48px 14px;
  }
  .referral-steps__inner {
    max-width: 100%;
  }
  .referral-steps__title {
    font-size: 30px;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .referral-steps__timeline {
    display: grid;
    direction: ltr;
    grid-template-columns: minmax(0, 1fr) 82px;
    grid-template-areas: "card1 dot1" "card2 dot2" "card3 dot3" "card4 dot4" "card5 dot5";
    gap: 18px 14px;
    align-items: center;
  }
  .referral-steps__line {
    left: auto;
    right: 39px;
    top: 16px;
    bottom: 16px;
    width: 3px;
    transform: none;
  }
  .referral-steps__dot {
    grid-column: 2;
    width: 54px;
    height: 54px;
    justify-self: center;
    margin-right: -155px;
  }
  .referral-steps__dot--1 {
    grid-area: dot1;
  }
  .referral-steps__dot--2 {
    grid-area: dot2;
  }
  .referral-steps__dot--3 {
    grid-area: dot3;
  }
  .referral-steps__dot--4 {
    grid-area: dot4;
  }
  .referral-steps__dot--5 {
    grid-area: dot5;
  }
  .ref-card--1 {
    grid-area: card1;
  }
  .ref-card--2 {
    grid-area: card2;
  }
  .ref-card--3 {
    grid-area: card3;
  }
  .ref-card--4 {
    grid-area: card4;
  }
  .ref-card--5 {
    grid-area: card5;
  }
  .ref-card {
    min-height: unset;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 18px;
    text-align: right;
    width: 100%;
    max-width: 100%;
  }
  .ref-card--left,
  .ref-card--right {
    grid-column: 1;
  }
  .ref-card__icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
  .ref-card__icon svg {
    width: 32px;
    height: 32px;
  }
  .ref-card__body h3 {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.6;
  }
  .ref-card__body p {
    font-size: 14px;
    line-height: 1.9;
  }
  .ref-card__body a {
    margin-top: 8px;
    font-size: 13px;
  }
  .service-card__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 12px;
  }
  .service-card__icon {
    order: 1;
    flex: 0 0 auto;
  }
  .service-card__top h3 {
    order: 2;
    margin: 0;
  }
}
@media (max-width: 640px) {
  .referral-steps {
    padding: 44px 0 56px;
  }
  .referral-steps__title {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .ref-card {
    min-height: auto;
    padding: 16px 18px;
  }
  .ref-card__body h3 {
    font-size: 14px;
  }
  .ref-card__body a,
  .ref-card__body p {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
  }
  .fxpay-card__visual {
    height: 280px !important;
  }
  .fxpay-card__img {
    max-width: 360px !important;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .title {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .fxpay-about__header h2 {
    font-size: 28px;
  }
  .fxpay-about__grid {
    gap: 18px;
  }
  .fxpay-card__visual {
    height: 220px;
    transform: scale(0.72);
  }
}
@media (max-width: 1024px) {
  .fxpay-card__visual {
    height: 260px !important;
  }
  .fxpay-card__img {
    max-width: 340px !important;
    width: 100% !important;
    height: auto !important;
  }
  .cta-content {
    gap: 20px;
    padding: 20px 18px 22px;
  }
  .cta-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .cta-text p {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .cta-button {
    width: 100%;
    max-width: 520px;
  }
  .cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
  }
  .cta-content {
    margin-inline: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}
.cta-section {
  margin-top: 18px;
  width: 100%;
  padding: 32px 40px 44px;
  display: flex;
  justify-content: center;
  direction: rtl;
  box-sizing: border-box;
}
.cta-box {
  position: relative;
  width: 100%;
  max-width: 1436px;
  min-height: 274px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 33, 0.96) 0,
    rgba(8, 9, 17, 0.96) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.16),
    inset 0 -20px 50px rgba(255, 255, 255, 0.03);
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  pointer-events: none;
}
.cta-bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(89, 92, 255, 0.22) 0,
      rgba(89, 92, 255, 0.1) 26%,
      transparent 58%
    ),
    linear-gradient(
      90deg,
      rgba(8, 9, 17, 0.82) 0,
      transparent 18%,
      transparent 82%,
      rgba(8, 9, 17, 0.82) 100%
    );
}
.cta-glow {
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  width: 520px;
  height: 170px;
  border-radius: 999px;
  background: rgba(90, 95, 255, 0.34);
  filter: blur(58px);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  box-sizing: border-box;
}
.cta-text {
  width: 100%;
}
.cta-text h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.cta-text p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(141, 149, 255, 0.38) 0,
    rgba(108, 117, 255, 0.24) 100%
  );
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 8px 18px rgba(76, 86, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 24px 16px 32px;
  }
  .cta-box {
    min-height: 250px;
    border-radius: 20px;
  }
  .cta-content {
    max-width: 100%;
    padding: 26px 18px 28px;
    gap: 16px;
  }
  .cta-text h2 {
    font-size: 26px;
  }
  .cta-text p {
    font-size: 16px;
    line-height: 1.9;
  }
  .cta-button {
    min-width: 210px;
    height: 44px;
  }
}
@media (max-width: 1024px) {
  .cta-section {
    padding: 28px 18px 32px;
  }
  .cta-box {
    min-height: 220px;
    border-radius: 18px;
  }
  .cta-content {
    max-width: 640px;
    padding: 22px 18px 24px;
    gap: 14px;
  }
  .cta-glow {
    width: 420px;
    height: 140px;
    bottom: -40px;
  }
  .cta-button {
    min-width: 100%;
    max-width: 560px;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .ref-card {
    min-height: auto;
    padding: 16px 18px;
    left: 80px;
  }
}
.gradient-divider {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #05050a 0,
    #14182b 12.5%,
    #1b1f3a 25%,
    #35205f 37.5%,
    #535af2 50%,
    #35205f 62.5%,
    #1b1f3a 75%,
    #14182b 87.5%,
    #05050a 100%
  );
  background-size: 200% 100%;
  animation: 6s linear infinite gradientLoop;
  border: none;
}
.gradient-divider::before {
  content: "";
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgba(109, 40, 217, 0) 10%,
    rgba(109, 40, 217, 0.18) 25%,
    rgba(168, 85, 247, 0.35) 50%,
    rgba(109, 40, 217, 0.18) 75%,
    rgba(109, 40, 217, 0) 90%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: 6s linear infinite gradientLoop;
  filter: blur(6px);
  pointer-events: none;
}
@keyframes gradientLoop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}
.register-btn {
  width: 121px;
  height: 48px;
  padding: 8px 16px;
  background: #535af2;
  box-shadow:
    0 2px 4px rgba(255, 255, 255, 0.4) inset,
    0 -2px 4px rgba(0, 0, 0, 0.2) inset;
  border-radius: 10px;
  border: none;
  outline: white solid 0.5px;
  outline-offset: -0.5px;
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.register-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
}
.register-btn:hover {
  transform: translateY(-2px);
  background: #646bff;
  box-shadow:
    0 2px 5px rgba(255, 255, 255, 0.45) inset,
    0 -2px 5px rgba(0, 0, 0, 0.25) inset,
    0 8px 22px rgba(83, 90, 242, 0.28);
}
.register-btn:hover::before {
  animation: 0.8s registerShine;
}
.register-btn:active {
  transform: scale(0.96);
}
.register-btn.saved {
  background: #31b97b;
}
@keyframes registerShine {
  from {
    left: -80%;
  }
  to {
    left: 130%;
  }
}
.fx-header-inner {
  padding-top: 10px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  direction: ltr;
}
.fx-header-signup-btn {
  width: 110px;
  height: 48px;
  padding: 8px 16px;
  background: #535af2;
  box-shadow:
    0 2px 4px rgba(255, 255, 255, 0.4) inset,
    0 -2px 4px rgba(0, 0, 0, 0.2) inset;
  border-radius: 10px;
  outline: white solid 0.5px;
  outline-offset: -0.5px;
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-left: 35px;
}
.fx-header-signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
}
.fx-header-signup-btn:hover {
  transform: translateY(-2px);
  background: #646bff;
  box-shadow:
    0 2px 5px rgba(255, 255, 255, 0.45) inset,
    0 -2px 5px rgba(0, 0, 0, 0.25) inset,
    0 8px 22px rgba(83, 90, 242, 0.28);
}
.fx-header-signup-btn:hover::before {
  animation: 0.8s fxHeaderBtnShine;
}
.fx-header-signup-btn:active {
  transform: scale(0.96);
}
@keyframes fxHeaderBtnShine {
  from {
    left: -80%;
  }
  to {
    left: 130%;
  }
}
.fx-header-logo {
  width: 104px;
  height: 36.09px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 35px;
  order: 1;
}
.fx-header-logo img {
  width: 104px;
  height: auto;
  display: block;
}
.section-promo-video {
  padding: 80px 0;
  direction: rtl;
}
.promo-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.promo-video__content {
  width: 100%;
  max-width: 770px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.promo-video__title {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-family: "Yekan Bakh", sans-serif;
  font-weight: 900;
  line-height: 40px;
}
.promo-video__media {
  width: 100%;
  max-width: 770px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-video__image {
  width: 100%;
  max-width: 768px;
  display: block;
  border-radius: 32px;
  object-fit: cover;
}
.promo-video__play {
  width: 108.94px;
  height: 108.94px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0.88px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(8, 9, 17, 0.05);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 7px 21px rgba(255, 255, 255, 0.4) inset,
    0 -70px 70px rgba(8, 9, 17, 0.2) inset,
    0 -7px 7px rgba(255, 255, 255, 0.25) inset,
    0 35px 70px rgba(255, 255, 255, 0.25) inset,
    0 2px 4px rgba(255, 255, 255, 0.8) inset,
    0 7px 35px #000;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.promo-video__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.promo-video__play-icon {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 0;
  border-left: 30px solid #fff;
  margin-right: -6px;
}
@media (max-width: 992px) {
  .section-promo-video {
    padding: 64px 0;
  }
  .promo-video__title {
    font-size: 28px;
    line-height: 36px;
  }
  .promo-video__desc {
    font-size: 15px;
    line-height: 26px;
  }
  .promo-video__play {
    width: 92px;
    height: 92px;
  }
  .promo-video__play-icon {
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 24px;
  }
}
@media (max-width: 768px) {
  .section-promo-video {
    padding: 48px 0;
  }
  .promo-video {
    gap: 24px;
  }
  .promo-video__content {
    max-width: 100%;
    padding: 0 16px;
  }
  .promo-video__title {
    font-size: 24px;
    line-height: 32px;
  }
  .promo-video__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .promo-video__image {
    border-radius: 20px;
  }
  .promo-video__play {
    width: 76px;
    height: 76px;
  }
  .promo-video__play-icon {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }
}
@media (max-width: 480px) {
  .promo-video__title {
    font-size: 22px;
    line-height: 30px;
  }
  .promo-video__desc {
    font-size: 13px;
    line-height: 22px;
  }
  .promo-video__content {
    padding: 0 12px;
  }
}
#leadSignupForm.lead-signup-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.header {
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.fx-header-signup-btn {
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s,
    background 0.4s;
  order: 2;
}
.fx-header-signup-btn.cta-highlight {
  transform: scale(1.08);
  background: linear-gradient(135deg, #6c5ce7, #4834d4);
  box-shadow:
    0 0 0 4px rgba(108, 92, 231, 0.25),
    0 4px 20px rgba(108, 92, 231, 0.5);
  animation: 1.8s ease-in-out ctaPulse;
}
@keyframes ctaPulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.08);
  }
}
@media (max-width: 768px) {
  .section {
    padding: 106px 0;
  }
}
.fx-header-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
section.section.section-hero {
  padding-bottom: 30px;
}
@media (max-width: 560px) {
  .container,
  .fx-header-inner {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .header .container.fx-header-inner,
  .header .fx-header-inner {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
  .header .fx-header-signup-btn {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .header .fx-header-logo {
    margin-right: 0 !important;
    margin-left: auto !important;
  }
  .fx-header-logo img {
    max-width: 85px;
    height: auto;
    display: block;
  }
}
.section-benefits {
  padding: 60px 20px;
  background: #0a0a0f;
}
.benefits-head h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.benefits-grid {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  flex-wrap: wrap;
}
.benefit-card {
  flex: 1;
  min-width: 260px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(136, 152, 255, 0.05);
  box-shadow:
    0 4px 20px 0 rgba(0, 0, 0, 0.2),
    0 1px 2px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 45px 0 rgba(255, 255, 255, 0.18) inset,
    0 -4px 6px 0 rgba(255, 255, 255, 0.18) inset,
    0 -40px 40px 0 rgba(8, 9, 17, 0.2) inset,
    0 4px 12px 0 rgba(255, 255, 255, 0.4) inset;
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
}
.benefit-card .icon-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card .icon-wrap img {
  width: 200px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.benefit-card h3 {
  font-family: YekanBakhBold;
  color: #fff;
  margin: 0 0 12px;
}
.benefit-card p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .benefits-grid {
    flex-direction: column;
  }
}
#leadSignupForm.lead-signup-form .register-btn {
  align-self: stretch;
  flex: 0 0 clamp(120px, 32vw, 170px);
}
.benefit-card .cta {
  width: 100%;
  margin-top: auto;
}
.referral-steps {
  direction: rtl;
  padding: 58px 0 72px;
  overflow: hidden;
  background: #07070d;
}
.referral-steps__inner {
  width: min(100% - 36px, 1280px);
  margin: 0 auto;
  padding: 0;
}
.referral-steps__title {
  margin: 0 0 40px;
  color: #fff;
  font-family: "Yekan Bakh", YekanBakhBold, YekanBakh, sans-serif;
  overflow-wrap: anywhere;
}
.referral-steps__timeline {
  position: relative;
  display: block;
  height: 810px;
  padding: 0;
}
.referral-steps__line {
  position: absolute;
  top: 65px;
  bottom: 65px;
  left: 50%;
  right: auto;
  width: 1px;
  transform: translateX(-50%);
  background: #535af2;
  box-shadow: 0 0 6px rgba(83, 90, 242, 0.9);
}
.referral-steps__dot {
  position: absolute;
  left: 50%;
  right: auto;
  width: 72px;
  height: 72px;
  margin: 0;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.13px solid #635aff;
  background: linear-gradient(
    215deg,
    rgba(146, 151, 255, 0.1) 0,
    rgba(86, 94, 255, 0.1) 100%
  );
  box-shadow: none;
  z-index: 3;
  isolation: isolate;
}
.referral-steps__dot::before {
  content: "";
  position: absolute;
  width: 56.55px;
  height: 56.55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 2.25px 4.5px rgba(255, 255, 255, 0.4),
    inset 0 -2.25px 4.5px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5.63px);
  z-index: -1;
}
.referral-steps__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(83, 90, 242, 0.35);
  filter: blur(15px);
  z-index: -2;
}
.referral-steps__dot span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Yekan Bakh FaNum", YekanBakhBold, YekanBakh, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}
.referral-steps__dot--1 {
  top: 29px;
}
.referral-steps__dot--2 {
  top: 199px;
}
.referral-steps__dot--3 {
  top: 369px;
}
.referral-steps__dot--4 {
  top: 539px;
}
.referral-steps__dot--5 {
  top: 709px;
}
.ref-card,
.ref-card--left,
.ref-card--right {
  position: absolute;
  top: auto;
  right: auto;
  left: auto;
  width: 510px;
  height: 130px;
  min-height: 130px;
  padding: 15px 28px 15px 23px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  direction: rtl;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  outline: rgba(114, 121, 255, 0.08) solid 1px;
  outline-offset: -1px;
  background: rgba(136, 142, 255, 0.05);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    inset 0 -1px 20px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.ref-card::before {
  display: none;
}
.ref-card--left {
  left: 0;
}
.ref-card--right {
  right: 0;
}
.ref-card--1 {
  top: 0;
}
.ref-card--2 {
  top: 170px;
}
.ref-card--3 {
  top: 340px;
}
.ref-card--4 {
  top: 510px;
}
.ref-card--5 {
  top: 680px;
}
.ref-card__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #535af2;
}
.ref-card__icon svg {
  width: 60px;
  height: 60px;
  max-width: 100%;
  max-height: 100%;
}
.ref-card__body {
  flex: 1 1 auto;
}
.ref-card__body h3 {
  margin: 0;
  color: #fff;
  font-family: "Yekan Bakh", YekanBakhBold, YekanBakh, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  overflow-wrap: anywhere;
}
.ref-card__body p {
  margin: 0;
  color: #fff;
  font-family: "Yekan Bakh", YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  overflow-wrap: anywhere;
}
.ref-card__body a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #535af2;
  font-family: "Yekan Bakh", YekanBakhBold, YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}
@media (max-width: 1170px) and (min-width: 901px) {
  .referral-steps__inner {
    width: min(100% - 32px, 1060px);
  }
  .ref-card,
  .ref-card--left,
  .ref-card--right {
    width: calc(50% - 54px);
  }
}
@media (max-width: 900px) {
  .referral-steps {
    padding: 48px 16px 56px;
  }
  .referral-steps__inner {
    width: 100%;
    max-width: 430px;
    padding: 0;
  }
  .referral-steps__title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 900;
    line-height: 40px;
  }
  .referral-steps__timeline {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 286px) 62px;
    grid-template-areas: "card1 dot1" "card2 dot2" "card3 dot3" "card4 dot4" "card5 dot5";
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    row-gap: 48px;
    height: auto;
    padding: 0;
    direction: ltr;
  }
  .referral-steps__line {
    top: 61px;
    bottom: 61px;
    right: 31px;
    left: auto;
    width: 1px;
    transform: none;
    background: #535af2;
    box-shadow: 0 0 6px rgba(83, 90, 242, 0.9);
  }
  .referral-steps__dot {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 2;
    justify-self: center;
    width: 61.93px;
    height: 61.93px;
    margin: 0;
    transform: none;
    border: 1px solid #635aff;
  }
  .referral-steps__dot::before {
    width: 48.64px;
    height: 48.64px;
  }
  .referral-steps__dot::after {
    inset: 2px;
    filter: blur(13.75px);
  }
  .referral-steps__dot span {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
  }
  .referral-steps__dot--1 {
    grid-area: dot1;
  }
  .referral-steps__dot--2 {
    grid-area: dot2;
  }
  .referral-steps__dot--3 {
    grid-area: dot3;
  }
  .referral-steps__dot--4 {
    grid-area: dot4;
  }
  .referral-steps__dot--5 {
    grid-area: dot5;
  }
  .ref-card,
  .ref-card--left,
  .ref-card--right {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    grid-column: 1;
    width: 100%;
    height: auto;
    min-height: 122px;
    padding: 17px 16px;
    gap: 8px;
    border-radius: 16px;
  }
  .ref-card--1 {
    grid-area: card1;
  }
  .ref-card--2 {
    grid-area: card2;
  }
  .ref-card--3 {
    grid-area: card3;
  }
  .ref-card--4 {
    grid-area: card4;
  }
  .ref-card--5 {
    grid-area: card5;
  }
  .ref-card__icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    align-self: flex-start;
  }
  .ref-card__icon svg {
    width: 32px;
    height: 32px;
  }
  .ref-card__body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
  .ref-card__body p {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  .ref-card__body a {
    margin-top: 2px;
    color: #535af2;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
  }
}
@media (max-width: 380px) {
  .referral-steps {
    padding-right: 12px;
    padding-left: 12px;
  }
  .referral-steps__timeline {
    grid-template-columns: minmax(0, 1fr) 56px;
    column-gap: 12px;
  }
  .referral-steps__line {
    right: 28px;
  }
  .referral-steps__dot {
    width: 56px;
    height: 56px;
  }
  .referral-steps__dot::before {
    width: 44px;
    height: 44px;
  }
  .ref-card,
  .ref-card--left,
  .ref-card--right {
    padding: 14px 12px;
  }
}
.lead-signup-wrapper {
  position: relative;
  direction: rtl;
  font-family: inherit;
}
#leadSignupForm.lead-signup-form input {
  flex: 1;
  outline: 0;
  font-family: inherit;
  box-sizing: border-box;
  direction: rtl;
}
#leadSignupForm.lead-signup-form input::placeholder {
  color: #b8b8b8;
}
#leadSignupForm.lead-signup-form button {
  background-size: 220% 220%;
  font-family: inherit;
  animation: 3s infinite leadButtonGradient;
  box-shadow: 0 6px 18px rgba(20, 121, 232, 0.35);
}
#leadSignupForm.lead-signup-form button::before {
  content: "";
  position: absolute;
  top: 0;
  right: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  animation: 2.6s ease-in-out infinite leadButtonShine;
}
#leadSignupForm.lead-signup-form button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(20, 121, 232, 0.5);
}
#leadSignupForm.lead-signup-form button:active {
  transform: scale(0.97);
}
@keyframes leadButtonGradient {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes leadButtonShine {
  0% {
    right: -80%;
  }
  100%,
  45% {
    right: 130%;
  }
}
.lead-signup-hint {
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(235, 246, 255, 0.98)
  );
  border: 1px solid rgba(20, 121, 232, 0.18);
  border-top: none;
  border-radius: 0 0 18px 18px;
  color: #26384d;
  font-size: 13px;
  line-height: 1.8;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  filter: blur(4px);
  box-shadow:
    0 14px 30px rgba(20, 121, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.42s;
}
.lead-signup-wrapper:focus-within .lead-signup-hint {
  opacity: 1;
  max-height: 90px;
  padding: 12px 16px 13px;
  transform: translateY(-1px);
  filter: blur(0);
  animation: 3s ease-in-out infinite hintSoftGlow;
}
.hint-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  left: -55px;
  top: -80px;
  background: radial-gradient(circle, rgba(0, 162, 255, 0.24), transparent 65%);
  pointer-events: none;
  animation: 4s ease-in-out infinite hintGlowMove;
}
.hint-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.hint-item strong {
  color: #1479e8;
  direction: ltr;
  font-weight: 700;
  background: rgba(20, 121, 232, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
}
.hint-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1479e8, #00a2ff);
  border-radius: 50%;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(20, 121, 232, 0.3);
  animation: 1.8s ease-in-out infinite hintIconPulse;
}
.hint-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(20, 121, 232, 0.35),
    transparent
  );
}
@keyframes hintSoftGlow {
  0%,
  100% {
    box-shadow:
      0 14px 30px rgba(20, 121, 232, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow:
      0 16px 34px rgba(20, 121, 232, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}
@keyframes hintGlowMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(40px, 18px) scale(1.15);
    opacity: 1;
  }
}
@keyframes hintIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 18px rgba(20, 121, 232, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(20, 121, 232, 0.48);
  }
}
#leadSignupMessage {
  margin-top: 5px !important;
  font-size: 14px;
  font-family: inherit;
  min-height: 24px;
  text-align: center;
}
@media (max-width: 640px) {
  .lead-signup-wrapper {
    width: 100%;
  }
  #leadSignupForm.lead-signup-form {
    width: 100%;
    height: 50px;
  }
  #leadSignupForm.lead-signup-form input {
    font-size: 14px;
    padding: 0 12px;
  }
  #leadSignupForm.lead-signup-form button {
    font-size: 13px;
    padding: 0 10px;
  }
  .lead-signup-hint {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    font-size: 12px;
  }
  .lead-signup-wrapper:focus-within .lead-signup-hint {
    max-height: 140px;
  }
  .hint-item {
    justify-content: center;
  }
  .hint-divider {
    width: 70%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(
      to right,
      transparent,
      rgba(20, 121, 232, 0.35),
      transparent
    );
  }
}
@media (max-width: 380px) {
  #leadSignupForm.lead-signup-form button {
    width: 110px;
    font-size: 12px;
  }
  #leadSignupForm.lead-signup-form input {
    font-size: 13px;
  }
}
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  direction: rtl;
  scroll-padding-top: calc(var(--fx-header-height) + 16px);
  scroll-padding-top: calc(var(--fx-header-height, 68px) + 16px);
}
canvas,
img,
svg,
video {
  max-width: 100%;
}
.fx-faq-cta,
.fxpay-about,
.gradient-divider,
.header,
.referral-steps,
.section,
.section-benefits,
.section-promo-video,
.services-tools,
.tether-exchange-section {
  width: 100%;
  max-width: 100%;
}
.container,
.fx-container,
.fxpay-about__container,
.services-tools__inner {
  margin-right: auto;
  margin-left: auto;
}
.promo-video__desc {
  width: 100%;
  max-width: 100%;
}
.tether-exchange-section {
  position: relative;
  isolation: isolate;
  padding: 84px 24px 100px;
  overflow: hidden;
  direction: rtl;
  background:
    radial-gradient(
      ellipse 150px 72% at 2% 50%,
      rgba(83, 90, 242, 0.16),
      transparent 72%
    ),
    radial-gradient(
      ellipse 150px 72% at 98% 50%,
      rgba(83, 90, 242, 0.16),
      transparent 72%
    ),
    radial-gradient(
      ellipse 52% 70px at 50% 4%,
      rgba(83, 90, 242, 0.18),
      transparent 75%
    ),
    radial-gradient(
      ellipse 52% 70px at 50% 96%,
      rgba(83, 90, 242, 0.18),
      transparent 75%
    ),
    #07070d;
}
.container1 {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tether-exchange-card {
  position: relative;
  width: min(100%, 835px);
  max-width: 835px;
  margin: 0 auto;
  padding: 24px 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  outline-offset: 0;
  direction: rtl;
  text-align: right;
  overflow: visible;
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: none;
  backdrop-filter: none;
}
.tether-exchange-card::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(83, 90, 242, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
.tether-exchange-card__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.tether-exchange-card h2 {
  margin: 0;
  color: #fff;
  font-family: YekanBakhBold;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
.tether-exchange-card .tabs {
  width: 100%;
  height: 34px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #363640;
}
.tether-exchange-card .tab {
  position: relative;
  flex: 1 1 0;
  height: 34px;
  padding: 0 8px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #51515c;
  font-family: "Yekan Bakh", YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  transition: color 0.25s;
}
.tether-exchange-card .tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  border-radius: 10px 10px 0 0;
  background: #535af2;
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.tether-exchange-card .tab.active {
  color: #5148f5;
}
.tether-exchange-card .tab.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.tether-exchange-card__body {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tether-exchange-fields {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.tether-exchange-card .field {
  position: relative;
  width: 100%;
  margin: 0;
}
.tether-exchange-card .field label {
  position: absolute;
  top: -12px;
  right: 12px;
  z-index: 2;
  padding: 0 4px;
  border: 0;
  background: #0f1021;
  color: #aaabb4;
  font-family: "Yekan Bakh", YekanBakh, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}
.tether-exchange-card .input-box {
  width: 100%;
  min-height: 64px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  direction: rtl;
  border: 1px solid #3d3d46;
  border-radius: 10px;
  background: 0 0;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.tether-exchange-card .input-box:focus-within {
  border-color: #535af2;
  box-shadow: 0 0 0 3px rgba(83, 90, 242, 0.12);
}
.tether-exchange-card .currency {
  position: relative;
  flex: 0 0 112px;
  min-width: 112px;
  height: 40px;
  padding-left: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-left: 1px solid #43434b;
  color: #fff;
  font-family: "Yekan Bakh", YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}
.tether-exchange-card .currency::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid #535af2;
  border-bottom: 2px solid #535af2;
  transform: translateY(-65%) rotate(-45deg);
}
.tether-exchange-card .currency img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}
.tether-exchange-card .input-box input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 62px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: 0 0;
  color: #fff;
  font-family: "Yekan Bakh FaNum", YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  direction: ltr;
  text-align: left;
  appearance: textfield;
}
.tether-exchange-card .input-box input::-webkit-inner-spin-button,
.tether-exchange-card .input-box input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}
.tether-exchange-card .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.tether-exchange-card .exchange-btn {
  width: 36px;
  min-width: 36px;
  height: 36px;
  margin: 0 auto;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 40px;
  background: #535af2;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 8px 18px rgba(83, 90, 242, 0.24);
  cursor: pointer;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.tether-exchange-card .exchange-btn:hover {
  transform: rotate(180deg) scale(1.06);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 10px 24px rgba(83, 90, 242, 0.38);
}
.tether-exchange-card .exchange-btn img {
  width: 24px;
  height: 24px;
  display: block;
}
.tether-exchange-card .prices {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}
.tether-exchange-card .prices > div {
  width: 100%;
  min-height: 56px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #1f202e;
}
.tether-exchange-card .prices > div:last-child {
  border-bottom: 0;
}
.tether-exchange-card .prices span {
  color: #bbbccd;
  font-family: "Yekan Bakh", YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.tether-exchange-card .prices strong {
  color: #fff;
  font-family: "Yekan Bakh FaNum", YekanBakh, sans-serif;
  font-size: 16px;
  direction: ltr;
  font-weight: 400;
  line-height: 24px;
  direction: rtl;
  text-align: left;
}
.tether-action-btn {
  width: 100%;
  height: 56px;
  margin: 0;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #fff;
  border-radius: 10px;
  background: #535af2;
  color: #fff;
  font-family: "Yekan Bakh", YekanBakh, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 10px 24px rgba(83, 90, 242, 0.18);
  backdrop-filter: blur(5px);
  transition:
    transform 0.25s,
    filter 0.25s,
    box-shadow 0.25s;
}
.tether-action-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.42),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 14px 30px rgba(83, 90, 242, 0.32);
}
.tether-action-btn:active {
  transform: translateY(0) scale(0.99);
}
@media (max-width: 900px) {
  body {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .benefits-grid,
  .container,
  .container1,
  .fx-container,
  .fx-header-inner,
  .fxpay-about__container,
  .hero-inner,
  .promo-video,
  .referral-steps__inner,
  .services-tools__inner {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .promo-video__desc {
    width: 100% !important;
    max-width: 100% !important;
  }
  .referral-steps__timeline {
    grid-template-columns: minmax(0, 1fr) 62px !important;
    width: 100%;
    max-width: 100%;
  }
  .tether-exchange-section {
    padding: 58px 20px 70px;
  }
  .container1 {
    width: 100%;
    max-width: 680px;
    padding: 16px;
  }
  .tether-exchange-card {
    width: 100%;
    max-width: 100%;
    padding: 22px 24px 28px;
    outline-width: 14px;
  }
  .tether-exchange-card__body {
    margin-top: 48px;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .gradient-divider,
  .header,
  footer,
  main,
  section {
    margin-right: auto;
    margin-left: auto;
  }
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .benefits-grid,
  .faq-grid,
  .hero-inner,
  .promo-video,
  .services-tools__grid {
    width: 100%;
    max-width: 100%;
  }
  .tether-exchange-section {
    padding: 48px 14px 62px;
  }
  .container1 {
    max-width: 430px;
    padding: 10px;
  }
  .tether-exchange-card {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    outline: rgba(136, 152, 255, 0.08) solid 10px;
    background: rgba(136, 152, 255, 0.03);
  }
  .tether-exchange-card::before {
    inset: -10px;
    border-radius: 18px;
  }
  .tether-exchange-card__head {
    gap: 8px;
  }
  .tether-exchange-card h2 {
    font-size: 20px;
    line-height: 32px;
  }
  .tether-exchange-card .tab,
  .tether-exchange-card .tab.active {
    color: #51515c;
    font-size: 16px;
    line-height: 24px;
  }
  .tether-exchange-card .tab.active {
    color: #5148f5;
  }
  .tether-exchange-card .tab::after {
    background: #535af2;
  }
  .tether-exchange-card__body {
    margin-top: 40px;
    gap: 24px;
  }
  .tether-exchange-fields {
    gap: 16px;
  }
  .tether-exchange-card .input-box {
    min-height: 56px;
    padding-right: 12px;
    padding-left: 12px;
    border-color: #3d3d46;
  }
  .tether-exchange-card .input-box input {
    height: 54px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
  }
  .tether-exchange-card .currency {
    flex-basis: 104px;
    min-width: 104px;
    height: 36px;
    padding-left: 24px;
    border-left-color: #43434b;
    font-size: 16px;
  }
  .tether-exchange-card .currency::after {
    border-color: #535af2;
  }
  .tether-exchange-card .exchange-btn {
    background: #535af2;
  }
  .tether-exchange-card .prices > div {
    min-height: 48px;
    padding: 10px 12px;
    border-bottom-color: #1f202e;
  }
  .tether-exchange-card .prices span,
  .tether-exchange-card .prices strong {
    font-size: 14px;
    line-height: 24px;
  }
  .tether-action-btn {
    height: 48px;
    background: #535af2;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 390px) {
  .tether-exchange-section {
    padding-right: 10px;
    padding-left: 10px;
  }
  .container1 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .tether-exchange-card {
    padding-right: 14px;
    padding-left: 14px;
  }
  .tether-exchange-card .currency {
    flex-basis: 94px;
    min-width: 94px;
    gap: 6px;
    font-size: 14px;
  }
  .tether-exchange-card .input-box input {
    font-size: 15px;
  }
  .referral-steps__timeline {
    grid-template-columns: minmax(0, 1fr) 56px !important;
    column-gap: 12px !important;
  }
}
@media (max-width: 900px) {
  .container.hero-inner,
  .hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
  }
  #leadSignupForm.lead-signup-form,
  .aparat-embed,
  .hero-card,
  .hero-text,
  .lead-signup-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .hero-card,
  .hero-text {
    justify-self: stretch;
  }
}
.benefits-head {
  text-align: center !important;
  margin-top: -50px;
  margin-bottom: 32px;
}
.prices strong {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.price-amount {
  font-weight: 700;
}
.price-unit {
  font-weight: 400;
  opacity: 0.85;
}
span.price-amount {
  margin-left: 5px;
}
input#resultInput {
  direction: rtl !important;
}
#leadSignupForm.lead-signup-form {
  display: flex;
  align-items: stretch;
}
#leadSignupForm.lead-signup-form .register-btn,
#leadSignupForm.lead-signup-form button {
  display: flex;
  width: 107px;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  flex-shrink: 0;
}
#leadSignupForm.lead-signup-form input {
  flex: 1;
  box-sizing: border-box;
}
header.header {
  padding: 10px 0;
}
input#leadSignupInput {
  color: #fff !important;
}
@media (min-width: 641px) {
  #leadSignupForm.lead-signup-form {
    display: flex;
    align-items: stretch;
    gap: 12px;
  }
  #leadSignupForm.lead-signup-form .register-btn,
  #leadSignupForm.lead-signup-form button {
    display: flex;
    width: 170px;
    height: 48px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    box-shadow:
      0 -2px 4px 0 rgba(0, 0, 0, 0.2) inset,
      0 2px 4px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  #leadSignupForm.lead-signup-form .register-btn:hover,
  #leadSignupForm.lead-signup-form button:hover {
    opacity: 0.9;
  }
  #leadSignupForm.lead-signup-form input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border-radius: 10px;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 15px;
    background: 0 0;
  }
}
@media (max-width: 900px) {
  .hero-card {
    margin-top: -70px;
    justify-self: stretch;
  }
}
section.section.section-promo-video {
  margin-top: -50px;
  padding-top: 0 !important;
}
section.section.section-benefits {
  margin-top: -50px;
}
#typing-text-container {
  color: var(--Dark-Text-TX1, #fff);
  text-align: right;
  font-family: YekanBakhBold, "Yekan Bakh", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
}
.hero-subtitle {
  color: var(--Dark-Text-TX1, #fff);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  width: 650px;
}
p.hero-subtitle.promo-video__subtitle {
  text-align: center !important;
}
@media (max-width: 640px) {
  #typing-text-container {
    text-align: center;
    font-family: YekanBakhBold;
    font-size: 23px;
    line-height: 40px;
  }
  .hero-subtitle {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.28px;
    width: 100%;
  }
  .benefits-head h2 {
    color: var(--Dark-Text-TX1, #fff);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px;
  }
}
.benefit-card h3 {
  align-self: stretch;
  color: var(--Dark-Text-TX1, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.32px;
}
@media (max-width: 640px) {
  .benefit-card h3 {
    font-family: YekanBakhBold;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.4px;
  }
}
@media (min-width: 901px) {
  .benefits-grid {
    display: flex;
    flex-direction: row;
  }
  .benefit-card:has(.icon-award) {
    order: 1;
  }
  .benefit-card:has(.icon-profit) {
    order: 2;
  }
  .benefit-card:has(.icon-search) {
    order: 3;
  }
}
.benefit-card p {
  color: var(--Dark-Text-TX1, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.32px;
}
.referral-steps__title {
  color: var(--Dark-Text-TX1, #fff);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
}
@media (max-width: 640px) {
  .benefit-card p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.28px;
  }
  .container1 {
    max-width: 490px;
    padding: 10px;
  }
  .referral-steps__title {
    font-size: 24px;
    line-height: 40px;
  }
}
.ref-card__body {
  background-color: #10101e !important;
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
}
.ref-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fxpay-about__header h2 {
  color: var(--Dark-Text-TX1, #fff);
  font-family: YekanBakhBold;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
}
@media (max-width: 640px) {
  .fxpay-about__header h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 40px;
  }
}
.fxpay-about__header p {
  color: var(--Dark-Text-TX1, #fff);
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.36px;
}
@media (max-width: 640px) {
  .fxpay-about__header p {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.32px;
  }
}
.service-card__top,
h2,
h2#services-tools__title {
  font-family: YekanBakhBold;
}
.tether-exchange-card .currency::after,
.tether-exchange-card .prices {
  display: none !important;
}
.section-hero {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(52px, 7vw, 104px) 0 clamp(48px, 6vw, 88px);
  background:
    radial-gradient(
      circle at 84% 26%,
      rgba(83, 90, 242, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 10% 82%,
      rgba(34, 161, 255, 0.08),
      transparent 30%
    ),
    #07070d;
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(760px, 72vw);
  height: min(420px, 44vw);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  z-index: -1;
}
.section-hero .container.hero-inner,
.section-hero .hero-inner {
  margin-inline: auto !important;
  padding: 0 clamp(18px, 4vw, 42px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr) !important;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}
.section-hero .hero-text {
  text-align: right;
}
.section-hero #typing-text-container,
.section-hero .hero-title {
  color: #fff;
  font-family: YekanBakhBold, YekanBakh, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.section-hero #typed-text,
.section-hero .hero-title-shell {
  display: inline;
}
.section-hero .hero-subtitle {
  width: auto !important;
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 2 !important;
  text-align: right;
}
.section-hero .hero-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-hero .hero-card::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 90, 242, 0.2), transparent 68%);
  filter: blur(24px);
  z-index: -1;
}
.section-hero .hero-card img {
  width: min(100%, 560px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.38));
}
.section-hero #leadSignupForm.lead-signup-form {
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.section-hero #leadSignupForm.lead-signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}
.section-hero #leadSignupForm.lead-signup-form .register-btn,
.section-hero #leadSignupForm.lead-signup-form button {
  width: fit-content !important;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 24px rgba(83, 90, 242, 0.3);
}
.section-hero .lead-signup-hint {
  max-width: 100%;
}
.services-tools {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 0 clamp(72px, 9vw, 124px);
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(83, 90, 242, 0.12),
      transparent 32%
    ),
    #080811;
}
.services-tools__inner {
  width: min(100% - 40px, 1290px) !important;
  margin-inline: auto;
}
.services-tools__head {
  margin-bottom: clamp(30px, 4vw, 46px);
  flex-wrap: wrap;
}
.services-tools__title {
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
}
.services-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
.services-tools__grid > .service-card {
  min-width: 0;
}
.service-card {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 99, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 42px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(83, 90, 242, 0.13);
}
.service-card__top {
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 13px;
}
.service-card__top h3 {
  flex: 1;
  min-width: 0;
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.65;
}
.service-card__icon {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
}
.service-card__icon svg {
  width: 39px;
  height: 39px;
}
.service-card p {
  flex: 1;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14.5px;
  line-height: 2;
  text-align: justify;
}
.service-card__button {
  width: fit-content;
  min-width: 132px;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border: 1px solid rgba(121, 128, 255, 0.32);
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(98, 104, 255, 0.96),
    rgba(70, 77, 224, 0.96)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 10px 22px rgba(83, 90, 242, 0.22);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 0.25s,
    filter 0.25s,
    box-shadow 0.25s;
}
.service-card__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 28px rgba(83, 90, 242, 0.3);
}
.services-tools__footer {
  position: relative;
  max-width: 980px;
  margin: clamp(38px, 5vw, 58px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(100, 108, 255, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(83, 90, 242, 0.18), transparent 58%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.22);
}
.services-tools__footer-title {
  margin: 0;
  color: #fff;
  font-family: YekanBakhBold, YekanBakh, sans-serif;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.65;
  text-wrap: balance;
}
.services-tools__footer-text {
  max-width: 820px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 2;
}
.fx-faq-cta {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0 clamp(52px, 7vw, 92px) !important;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(83, 90, 242, 0.12),
      transparent 34%
    ),
    #07070d;
}
.fx-faq-cta .fx-container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}
.fx-faq-cta .faq-section {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.fx-faq-cta .section-title {
  margin-bottom: clamp(24px, 4vw, 38px);
  font-size: clamp(28px, 4vw, 44px);
  text-wrap: balance;
}
.fx-faq-cta .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.fx-faq-cta .faq-column {
  min-width: 0;
}
.fx-faq-cta .faq-item {
  width: 100%;
  border-radius: 18px;
}
.fx-faq-cta .faq-item summary {
  min-height: 76px;
  padding: 18px 68px 18px 20px;
  align-items: center;
  white-space: normal;
  overflow-wrap: anywhere;
}
.fx-faq-cta .faq-content {
  padding: 14px 24px 24px;
}
.fx-faq-cta .faq-content p {
  overflow-wrap: anywhere;
}
.fx-faq-cta .cta-section {
  width: 100%;
  margin: 0;
  padding: 0 !important;
}
.fx-faq-cta .cta-box {
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: clamp(30px, 5vw, 54px) clamp(20px, 5vw, 56px);
  border-radius: 24px;
}
.fx-faq-cta .cta-content {
  max-width: 800px;
  margin-inline: auto !important;
  padding: 0;
  gap: 22px;
}
.fx-faq-cta .cta-text h2 {
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.35;
}
.fx-faq-cta .cta-text p {
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 400;
  line-height: 2;
}
.fx-faq-cta .cta-button {
  width: fit-content;
  min-width: 220px;
  max-width: 100%;
  height: 48px;
  padding-inline: 28px;
  border-radius: 12px;
}
@media (max-width: 1100px) {
  .section-hero .container.hero-inner,
  .section-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr) !important;
    gap: 40px;
  }
  .services-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .section-hero .container.hero-inner,
  .section-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 38px;
  }
  .section-hero #typing-text-container,
  .section-hero .hero-subtitle,
  .section-hero .hero-text,
  .section-hero .hero-title {
    text-align: center !important;
  }
  .section-hero .hero-subtitle,
  .section-hero .lead-signup-wrapper {
    margin-inline: auto !important;
  }
  .section-hero .hero-card {
    margin-top: 0 !important;
  }
  .section-hero .hero-card img {
    width: min(100%, 460px);
  }
  .fx-faq-cta .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .fx-faq-cta .fx-container,
  .services-tools__inner {
    width: min(100% - 28px, 1290px) !important;
  }
  .services-tools__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-tools__head {
    flex-direction: column;
  }
  .service-card {
    padding: 22px 20px;
  }
  .service-card__button {
    align-self: stretch;
    width: 100%;
  }
}
@media (max-width: 620px) {
  .section-hero {
    padding-top: 46px;
  }
  .section-hero .container.hero-inner,
  .section-hero .hero-inner {
    padding-inline: 16px !important;
    gap: 30px;
  }
  .section-hero #typing-text-container,
  .section-hero .hero-title {
    font-size: clamp(27px, 8.2vw, 36px);
    line-height: 1.5;
  }
  .section-hero .hero-subtitle {
    margin-top: 12px !important;
    font-size: 14px;
    line-height: 1.9 !important;
  }
  .section-hero .lead-signup-wrapper {
    margin-top: 22px;
  }
  .section-hero #leadSignupForm.lead-signup-form {
    padding: 9px;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    border-radius: 16px;
  }
  .section-hero #leadSignupForm.lead-signup-form input {
    width: 100%;
    height: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .section-hero #leadSignupForm.lead-signup-form .register-btn,
  .section-hero #leadSignupForm.lead-signup-form button {
    align-self: center;
    width: fit-content !important;
    min-width: max-content !important;
    padding-inline: 20px !important;
  }
  .section-hero .lead-signup-hint {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .section-hero .hint-divider {
    width: 70%;
    height: 1px;
  }
  .fx-faq-cta .faq-item summary {
    min-height: 68px;
    padding: 16px 60px 16px 14px;
    font-size: 14px;
    line-height: 1.9;
  }
  .fx-faq-cta .faq-item summary::before {
    right: 14px;
  }
  .fx-faq-cta .faq-item summary::after {
    right: 27px;
  }
  .fx-faq-cta .faq-content {
    padding: 12px 18px 20px;
  }
  .fx-faq-cta .cta-box {
    padding: 30px 18px;
    border-radius: 18px;
  }
  .fx-faq-cta .cta-button {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 380px) {
  .section-hero #leadSignupForm.lead-signup-form .register-btn,
  .section-hero #leadSignupForm.lead-signup-form button {
    max-width: 100% !important;
    padding-inline: 15px !important;
    font-size: 13px;
  }
  .fx-faq-cta .fx-container,
  .services-tools__inner {
    width: min(100% - 20px, 1290px) !important;
  }
  .services-tools__footer {
    padding: 22px 16px;
  }
}
:root {
  --fx-header-height: 68px;
}
.header {
  min-height: var(--fx-header-height);
}
.container.hero-inner,
.section-hero .container.hero-inner,
.section-hero .hero-inner {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (min-width: 621px) and (max-width: 960px) {
  .section-hero {
    padding-top: clamp(42px, 6vw, 62px) !important;
  }
}
@media (max-width: 620px) {
  :root {
    --fx-header-height: 68px;
  }
  .section-hero {
    padding-top: 42px !important;
  }
}
body > .gradient-divider {
  margin-top: 0 !important;
}
.section-hero,
section.section.section-hero {
  margin-top: 0 !important;
  padding-top: clamp(44px, 6vw, 86px) !important;
}
.section-hero .container.hero-inner,
.section-hero .hero-inner {
  width: min(100%, 1320px) !important;
  max-width: 1320px !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding-inline: clamp(18px, 4vw, 42px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr) !important;
  align-items: center !important;
  gap: clamp(40px, 5.5vw, 78px) !important;
  transform: none !important;
}
.section-hero .hero-text {
  width: 100%;
  max-width: 720px;
  min-width: 0;
  margin: 0 !important;
  align-self: center;
  position: relative;
  z-index: 2;
}
.section-hero #typing-text-container,
.section-hero .hero-title {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  inset: auto !important;
  transform: none !important;
  overflow: visible;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.38;
  text-wrap: balance;
}
.section-hero .hero-subtitle {
  max-width: 680px;
  overflow-wrap: anywhere;
}
.section-hero .hero-card {
  width: 100%;
  max-width: 560px;
  min-width: 0;
  margin: 0 auto !important;
  transform: none !important;
}
.section-hero .lead-signup-wrapper {
  margin: 28px 0 0 !important;
}
.section-hero #leadSignupForm.lead-signup-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center !important;
  gap: 10px !important;
  direction: rtl;
}
.section-hero #leadSignupForm.lead-signup-form input,
.section-hero #leadSignupInput {
  grid-column: 1;
  max-width: 100% !important;
  inset: auto !important;
  text-align: right;
  direction: rtl;
  overflow: hidden;
}
.section-hero #leadSignupForm.lead-signup-form input::placeholder,
.section-hero #leadSignupInput::placeholder {
  opacity: 1;
  text-align: right;
  direction: rtl;
  white-space: nowrap;
}
.section-hero #leadSignupForm.lead-signup-form .register-btn,
.section-hero #leadSignupForm.lead-signup-form button {
  grid-column: 2;
  width: max-content !important;
  min-width: max-content !important;
  max-width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding-inline: 22px !important;
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  white-space: nowrap !important;
  flex: none !important;
}
@media (max-width: 1050px) {
  .section-hero,
  section.section.section-hero {
    padding-top: clamp(36px, 5.5vw, 58px) !important;
  }
  .section-hero .container.hero-inner,
  .section-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center !important;
    gap: clamp(30px, 5vw, 48px) !important;
  }
  .section-hero .hero-text {
    max-width: 760px;
    text-align: center !important;
    justify-self: center;
  }
  .section-hero #typing-text-container,
  .section-hero .hero-subtitle,
  .section-hero .hero-title {
    text-align: center !important;
    margin-inline: auto !important;
  }
  .section-hero .lead-signup-wrapper {
    margin-inline: auto !important;
  }
  .section-hero .hero-card {
    max-width: 500px;
  }
}
@media (max-width: 620px) {
  .section-hero,
  section.section.section-hero {
    padding-top: 32px !important;
    padding-bottom: 52px !important;
  }
  .section-hero .container.hero-inner,
  .section-hero .hero-inner {
    padding-inline: 16px !important;
    gap: 28px !important;
  }
  .section-hero #typing-text-container,
  .section-hero .hero-title {
    font-size: clamp(27px, 8.3vw, 36px);
    line-height: 1.48;
  }
  .section-hero #leadSignupForm.lead-signup-form {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 9px !important;
    padding: 9px !important;
    overflow: visible !important;
  }
  .section-hero #leadSignupForm.lead-signup-form input,
  .section-hero #leadSignupInput {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
  }
  .section-hero #leadSignupForm.lead-signup-form input::placeholder,
  .section-hero #leadSignupInput::placeholder {
    text-align: center;
  }
  .section-hero #leadSignupForm.lead-signup-form .register-btn,
  .section-hero #leadSignupForm.lead-signup-form button {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: fit-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding-inline: 20px !important;
  }
  .section-hero .hero-card {
    max-width: 420px;
  }
}
@media (max-width: 390px) {
  .section-hero #leadSignupForm.lead-signup-form .register-btn,
  .section-hero #leadSignupForm.lead-signup-form button {
    width: 100% !important;
    font-size: 13px !important;
    padding-inline: 12px !important;
  }
  .section-hero #leadSignupForm.lead-signup-form input,
  .section-hero #leadSignupInput {
    padding-inline: 10px !important;
    font-size: 13px !important;
  }
}
.header,
header.header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  z-index: 1000 !important;
}
.lead-signup-wrapper,
.section-hero .lead-signup-wrapper {
  width: 600px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-top: 32px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
#leadSignupForm.lead-signup-form,
.section-hero #leadSignupForm.lead-signup-form {
  width: 600px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 12px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: 0 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
#leadSignupForm.lead-signup-form input,
#leadSignupInput,
.section-hero #leadSignupForm.lead-signup-form input,
.section-hero #leadSignupInput {
  grid-column: auto !important;
  grid-row: auto !important;
  position: static !important;
  inset: auto !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px !important;
  background: 0 0 !important;
  color: #fff !important;
  font-size: 16px !important;
  text-align: start !important;
  direction: rtl !important;
  white-space: normal !important;
  overflow: clip !important;
  text-overflow: clip !important;
  z-index: auto !important;
}
#leadSignupForm.lead-signup-form input::placeholder,
#leadSignupInput::placeholder,
.section-hero #leadSignupForm.lead-signup-form input::placeholder,
.section-hero #leadSignupInput::placeholder {
  color: #b8b8b8 !important;
  opacity: 1 !important;
  text-align: start !important;
  direction: rtl !important;
  white-space: normal !important;
}
#leadSignupForm.lead-signup-form .register-btn,
#leadSignupForm.lead-signup-form button,
.section-hero #leadSignupForm.lead-signup-form .register-btn,
.section-hero #leadSignupForm.lead-signup-form button {
  grid-column: auto !important;
  grid-row: auto !important;
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  max-width: none !important;
  height: 47px !important;
  min-height: 47px !important;
  margin: 0 !important;
  padding: 8px 16px !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  border-radius: 10px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.05) !important;
  background: linear-gradient(135deg, #535af2, #535af2, #535af2) !important;
  box-shadow:
    0 -2px 4px 0 rgba(0, 0, 0, 0.2) inset,
    0 2px 4px 0 rgba(255, 255, 255, 0.25) inset !important;
  backdrop-filter: blur(5px) !important;
  box-sizing: border-box !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: normal !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
  z-index: auto !important;
}
#leadSignupForm.lead-signup-form .register-btn:hover,
#leadSignupForm.lead-signup-form button:hover,
.section-hero #leadSignupForm.lead-signup-form .register-btn:hover,
.section-hero #leadSignupForm.lead-signup-form button:hover {
  transform: none !important;
  opacity: 0.9 !important;
}
.lead-signup-hint,
.section-hero .lead-signup-hint {
  width: calc(100% - 22px) !important;
  max-width: none !important;
  margin: -1px auto 0 !important;
}
@media (max-width: 900px) {
  #leadSignupForm.lead-signup-form,
  .lead-signup-wrapper,
  .section-hero #leadSignupForm.lead-signup-form,
  .section-hero .lead-signup-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (max-width: 640px) {
  #leadSignupForm.lead-signup-form,
  .section-hero #leadSignupForm.lead-signup-form {
    height: 50px !important;
    min-height: 50px !important;
  }
  #leadSignupForm.lead-signup-form input,
  #leadSignupInput,
  .section-hero #leadSignupForm.lead-signup-form input,
  .section-hero #leadSignupInput {
    height: 50px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }
  #leadSignupForm.lead-signup-form .register-btn,
  #leadSignupForm.lead-signup-form button,
  .section-hero #leadSignupForm.lead-signup-form .register-btn,
  .section-hero #leadSignupForm.lead-signup-form button {
    height: 50px !important;
    min-height: 50px !important;
    padding: 8px 10px !important;
    font-size: unset !important;
  }
  .lead-signup-hint,
  .section-hero .lead-signup-hint {
    width: calc(100% - 22px) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    font-size: 12px !important;
  }
}
.services-tools__grid > .service-card__link {
  display: block;
  min-width: 0;
  height: 100%;
  color: inherit;
  border-radius: 20px;
  cursor: pointer;
}
.service-card__link .service-card {
  height: 100%;
}
.service-card__link:focus-visible {
  outline: 0;
}
.service-card__link:focus-visible .service-card {
  outline: rgba(121, 128, 255, 0.92) solid 2px;
  outline-offset: 4px;
  transform: translateY(-4px);
}
.services-tools__footer-button {
  width: fit-content;
  min-width: 168px;
  min-height: 50px;
  margin: 24px auto 0;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(132, 139, 255, 0.42);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #6268ff 0, #535af2 48%, #3f46df 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 28px rgba(83, 90, 242, 0.3);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 0.25s,
    filter 0.25s,
    box-shadow 0.25s;
}
.services-tools__footer-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 34px rgba(83, 90, 242, 0.38);
}
@media (max-width: 620px) {
  .services-tools__footer-button {
    width: 100%;
    min-width: 0;
  }
}
h2.promo-video__title {
  padding-top: 100px;
  font-family: YekanBakhBold;
}
.last-update {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin: 10px 0;
  direction: rtl;
}
.services-tools__grid {
  direction: ltr !important;
}
.services-tools__grid > * {
  direction: rtl !important;
}
@media (max-width: 640px) {
  .services-tools__grid {
    display: flex !important;
    flex-direction: column !important;
  }
  .services-tools__grid > a:nth-child(2) {
    order: -1 !important;
  }
}
.hero-card img {
  margin-top: -80px !important;
}
.section-hero {
  scroll-margin-top: calc(var(--fx-header-height) + 12px);
  position: relative;
}
.scroll-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  z-index: 5;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  animation: 2.4s ease-in-out infinite scrollIndicatorFloat;
  display: none;
}
.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%) scale(1.08);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}
.scroll-indicator:active {
  transform: translateX(-50%) scale(0.95);
}
.scroll-indicator__icon {
  position: relative;
  z-index: 2;
  animation: 1.8s ease-in-out infinite scrollIndicatorArrow;
}
.scroll-indicator__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: 2.2s ease-out infinite scrollIndicatorPulse;
}
@keyframes scrollIndicatorFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
@keyframes scrollIndicatorArrow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(3px);
    opacity: 0.6;
  }
}
@keyframes scrollIndicatorPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .scroll-indicator {
    width: 58px;
    height: 58px;
    bottom: 28px;
  }
  .scroll-indicator__icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 640px) {
  .scroll-indicator {
    width: 54px;
    height: 54px;
    display: flex;
    bottom: 32px;
  }
  .scroll-indicator__icon {
    width: 22px;
    height: 22px;
  }
}
span.services-tools__badge {
  display: none;
}

/* .prices [hidden] {
  display: none !important;
} */
.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  direction: ltr;
}

.register-btn span {
  direction: rtl;
}

.lead-signup-hint,
.section-hero .lead-signup-hint {
  margin-top: 10px !important;
}

#leadSignupForm.lead-signup-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* #leadSignupInput {
  flex: 0 0 70%;
  width: 70%;
  max-width: 67%;
}

.register-btn {
  flex: 0 0 30%;
  width: 30%;
  max-width: 30%;
} */
/* Lead Signup Form */
/* #leadSignupForm.lead-signup-form {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  gap: 12px !important;
  margin: 0 auto !important;
} */

/* Input */
#leadSignupForm #leadSignupInput {
  flex: 0 0 60% !important;
  width: 62% !important;
  max-width: 62% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* Button */
#leadSignupForm .register-btn {
  flex: 0 0 30% !important;
  width: 30% !important;
  max-width: 30% !important;
  min-width: 0 !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  box-sizing: border-box !important;
}

/* موبایل */
@media (max-width: 640px) {
  #leadSignupForm.lead-signup-form {
    width: 70% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
  }

  div#leadSignupHint {
    width: calc(78% - 22px) !important;
  }

  form#leadSignupForm {
    width: 500px !important;
  }
  #le #leadSignupForm #leadSignupInput {
    flex: 0 0 70% !important;
    width: 70% !important;
    max-width: 70% !important;
  }

  #leadSignupForm .register-btn {
    flex: 0 0 33% !important;
    width: 33% !important;
    max-width: 33% !important;
  }
}
@media (min-width: 640px) {
  .div#leadSignupHint {
    display: none !important;
  }
}

div#leadSignupHint {
  display: none !important;
}

@media (max-width: 640px) {
  #leadSignupForm.lead-signup-form input,
  #leadSignupInput,
  .section-hero #leadSignupForm.lead-signup-form input,
  .section-hero #leadSignupInput {
    height: 40px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }
}
@media (max-width: 640px) {
  button.register-btn {
    margin-bottom: 8px !important;
    height: 40px !important;
    min-height: 40px !important;
    font-size: unset !important;
  }

  .fx-header-signup-btn {
    width: 102px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  #leadSignupForm.lead-signup-form .register-btn,
  #leadSignupForm.lead-signup-form button,
  .section-hero #leadSignupForm.lead-signup-form .register-btn,
  .section-hero #leadSignupForm.lead-signup-form button {
    margin-bottom: 9px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    font-size: unset !important;
  }
}

input#leadSignupInput {
  color: #51515c !important;
}
