
/* =========================
   CSS Variables & Design Tokens
========================= */
:root {
  --bg: #0f1216;
  --panel: #151a21;
  --panel-2: #1b2230;
  --text: #e9edf3;
  --muted: #a9b4c3;
  --line: rgba(255, 255, 255, 0.12);
  
  --brand: #64acff;
  --brand-2: #7ebaff;
  --brand-green: #00c26f;
  --brand-pink: #ffa3bb;
  
  --radius: 12px;
  --radius-sm: 10px;
  
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-brand: 0 10px 24px rgba(100, 172, 255, 0.18);
  
  --transition-fast: 0.12s ease;
  --transition-medium: 0.25s ease;
  --transition-slow: 0.35s ease;
}

/* =========================
   Reset & Base Styles
========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}


body{
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  background-color: #1b1e22;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

/* =========================
   Layout Utilities
========================= */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { max-width: 768px; }
}

@media (min-width: 992px) {
  .container { max-width: 992px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1232px; }
}

/* =========================
   Button Components
========================= */
.new-button,
.now-button,
.button {
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: 
    transform var(--transition-fast), 
    background-color var(--transition-medium), 
    color var(--transition-medium), 
    border-color var(--transition-medium), 
    opacity var(--transition-medium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
}

.new-button {
  height: 40px;
  padding: 0 16px;
  background: var(--brand);
  color: #0b0f14;
  box-shadow: var(--shadow-brand);
}

.new-button:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}

.now-button {
  padding: 0 50px;
  height: 44px;
  background: var(--brand);
  color: #0b0f14;
  box-shadow: var(--shadow-brand);
  line-height: 28px;
}

.now-button:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}

.now-button_black-border {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--text);
  box-shadow: none;
}

.now-button_black-border:hover {
  background: rgba(100, 172, 255, 0.12);
  transform: translateY(-1px);
}

.now-button_blue-text {
  color: var(--brand);
}

.now-button_white-border {
  background: #fff;
  color: #0b0f14;
  border: 1px solid #fff;
}

.now-button_white-border:hover {
  background: #eef6ff;
}

.button {
  height: 44px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
}

.button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* =========================
   Message Box
========================= */
.message-box {
  position: relative;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(100, 172, 255, 0.95), rgba(126, 186, 255, 0.95));
  color: #071018;
  transition: max-height var(--transition-medium);
}

.message-box_active {
  max-height: 200px;
}

.message-box__text {
  display: block;
  padding: 14px 42px 14px 16px;
  text-align: center;
  font-weight: 600;
}

.message-box__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

























/* =========================
   CSS Variables
========================= */
:root {
  --brand: #64acff;
  --brand-hover: #4d9aff;
  --muted: rgba(233, 237, 243, 0.6);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

/* =========================
   Header Base
========================= */
.header {
  position: relative;
  height: 80px;
  z-index: 50;
}

.header__top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  /* background: rgba(15, 18, 22, 0.85); */
  background-color: #1b1e22;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
  z-index: 100;
}

.header__box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* =========================
   Logo
========================= */
.header__left {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
}

/* =========================
   Right Section
========================= */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* =========================
   Desktop Menu
========================= */
.header__menu {
  display: none;
}

@media (min-width: 1200px) {
  .header__menu {
    display: block;
  }

  .header__burger,
  .header__mobile-menu {
    display: none !important;
  }
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu__item {
  position: relative;
}

/* Menu Links */
.menu__link,
.submenu__name {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
}

.menu__link:hover,
.submenu:hover .submenu__name {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.submenu__name-icon {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform var(--transition-fast);
}

.submenu:hover .submenu__name-icon {
  transform: rotate(180deg);
}

/* =========================
   Menu Buttons
========================= */
.menu__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.menu__button_sign-in {
  color: var(--brand);
  background: transparent;
  border: 1px solid rgba(100, 172, 255, 0.3);
}

.menu__button_sign-in:hover {
  background: rgba(100, 172, 255, 0.1);
  border-color: rgba(100, 172, 255, 0.5);
}

.menu__button_get-started {
  color: #0b0f14;
  background: var(--brand);
  border: 1px solid var(--brand);
}

.menu__button_get-started:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(100, 172, 255, 0.3);
}

.menu__button_dashboard[hidden] {
  display: none;
}

/* =========================
   Dropdown Base - FIXED GAP
========================= */
.submenu {
  position: relative;
}

/* Invisible bridge to prevent gap closing */
.submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  z-index: 199;
}

.submenu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  z-index: 200;
}

.submenu:hover .submenu__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown positioning adjustments */
.submenu__dropdown_products {
  left: 0;
  transform: translateX(0) translateY(10px);
  min-width: 750px;
}

.submenu:hover .submenu__dropdown_products {
  transform: translateX(0) translateY(0);
}

.submenu__dropdown_solutions {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 780px;
}

.submenu:hover .submenu__dropdown_solutions {
  transform: translateX(-50%) translateY(0);
}

.submenu__dropdown_help {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
}

.submenu:hover .submenu__dropdown_help {
  transform: translateX(-50%) translateY(0);
}

/* =========================
   Simple Dropdown List
========================= */
.submenu__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(20, 24, 32, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.submenu__list-item {
  margin: 0;
}

.submenu__list-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.submenu__list-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   Products Mega Menu - FIXED STRUCTURE
========================= */
.products-submenu {
  background: rgba(20, 24, 32, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

/* NEW: Container for tab layout */
.products-submenu__container {
  display: flex;
  gap: 16px;
  min-height: 320px;
}

/* NEW: Left side tabs */
.products-submenu__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
  flex-shrink: 0;
}

/* NEW: Individual tab styling */
.products-submenu__tab {
  display: block;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  text-align: left;
}

.products-submenu__tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.products-submenu__tab--active {
  background: rgba(100, 172, 255, 0.12);
  border-color: rgba(100, 172, 255, 0.3);
}

.products-submenu__tab-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.products-submenu__tab-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* NEW: Right side panels */
.products-submenu__panels {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
}

/* NEW: Individual panel */
.products-submenu__panel {
  display: none;
  gap: 12px;
  animation: fadeIn 0.2s ease;
}

.products-submenu__panel--active {
  display: flex;
}

.products-submenu__panel--solutions {
  display: flex !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* OLD: Keep for backward compatibility but update for new structure */
.products-submenu__box {
  position: relative;
  min-height: 300px;
}

.products-submenu__box_solutions {
  min-height: auto;
}

/* OLD: Hide old structure items by default */
.products-submenu__item {
  display: none;
}

/* OLD: Keep left/right structure for backward compatibility */
.products-submenu__item-left {
  flex-shrink: 0;
  width: 200px;
}

.products-submenu__item-box {
  display: block;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.products-submenu__item-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.products-submenu__item-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.products-submenu__item-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.products-submenu__item-right {
  display: flex;
  gap: 12px;
  flex: 1;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.products-submenu__item-right_solutions {
  padding: 16px;
  gap: 8px;
}

/* Inner Menu Lists */
.products-submenu__inner-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 200px;
  flex: 1;
}

.products-submenu__inner-menu-item {
  margin: 0;
}

.products-submenu__inner-menu-item + .products-submenu__inner-menu-item {
  margin-top: 4px;
}

.products-submenu__inner-menu-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.products-submenu__inner-menu-item-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.products-submenu__inner-menu-item-img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.9;
}

.products-submenu__inner-menu-item-title {
  font-size: 14px;
  font-weight: 500;
}

/* Bottom Link */
.products-submenu__bottom-link {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}






















/* =========================
   Mobile Burger
========================= */
.header__burger {
  display: flex;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all var(--transition-medium);
}

.header_active-mobile-menu .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header_active-mobile-menu .burger span:nth-child(2) {
  opacity: 0;
}

.header_active-mobile-menu .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   Mobile Menu Overlay
========================= */
.header__mobile-menu {
  position: fixed;
  top: 80px; /* Matches header height */
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #1b1e22;
  z-index: 999;
  
  /* Initial State: Hidden */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  overflow: hidden;
}

/* Active State (Toggled by JS on header) */
.header.header_active-mobile-menu .header__mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-mobile {
  height: 100%;
  overflow-y: auto;
  width: 100%;
}

.menu-mobile__box {
  padding: 24px 20px 100px;
  display: flex;
  flex-direction: column;
}

/* =========================
   Main Accordion Headers
========================= */
.submenu-mobile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-mobile__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.submenu-mobile__name-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

/* Active Accordion State */
.submenu-mobile.active .submenu-mobile__name {
  color: #64acff;
}

.submenu-mobile.active .submenu-mobile__name-icon {
  transform: rotate(180deg);
}

/* Accordion Content Container */
.submenu-mobile__list {
  display: none;
  padding-bottom: 16px;
}

.submenu-mobile.active .submenu-mobile__list {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Standard Links
========================= */
.menu-mobile__link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-mobile__sublink {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* =========================
   Product Cards (Inside Accordion)
========================= */
.products-mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.products-mobile-submenu__item {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  cursor: pointer;
}

.products-mobile-submenu__item:active {
  background: rgba(255, 255, 255, 0.08);
}

.products-mobile-submenu__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.products-mobile-submenu__item-text {
  font-size: 14px;
  color: #a9b4c3;
  padding-right: 20px;
  line-height: 1.4;
}

.products-mobile-submenu__item-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg); /* Point right */
  width: 12px;
  opacity: 0.5;
}

/* =========================
   Sliding Nested Panels (Level 3)
========================= */
.products-submenu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Relative to .header__mobile-menu */
  background: #1b1e22;
  z-index: 1001; /* Above standard menu */
  padding: 24px 20px;
  overflow-y: auto;
  
  /* Slide Logic */
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
}

.products-submenu-mobile.active {
  transform: translateX(0);
}

.products-submenu-mobile__back {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #64acff;
  margin-bottom: 24px;
  cursor: pointer;
}

.products-submenu-mobile__inner-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-submenu-mobile__inner-menu li {
  margin-bottom: 8px;
}

.products-submenu-mobile__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
}

.products-submenu-mobile__icon {
  width: 24px;
  height: 24px;
}

.products-submenu-mobile__title {
  font-size: 16px;
  font-weight: 500;
}

/* Explore Link Special Style */
.products-submenu-mobile__link--explore {
  color: #64acff;
  font-weight: 700;
  justify-content: space-between;
}

/* =========================
   Coins Menu Styles
========================= */
.coins-submenu-mobile__landing-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(100, 172, 255, 0.1);
  border: 1px solid rgba(100, 172, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

.coins-submenu-mobile__landing-link-arrow {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.coins-submenu-mobile__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.coins-submenu-mobile__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}

.coins-submenu-mobile__item img {
  width: 24px;
  height: 24px;
}

.coins-submenu-mobile__item .name {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.coins-submenu-mobile__item .ticker {
  display: block;
  font-size: 12px;
  color: #a9b4c3;
}

/* =========================
   Language Switcher
========================= */
.menu-languages {
  margin-top: 24px;
  border-bottom: none;
}

.menu-languages__header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  cursor: pointer;
}

.menu-languages__current {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.menu-languages__list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.menu-languages__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}

/* =========================
   Footer Buttons
========================= */
.menu-mobile__buttons {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-mobile__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
}

.menu-mobile__button_get-started {
  background: #64acff;
  color: #0b0f14;
}

.menu-mobile__button_sign-in {
  background: transparent;
  border: 1px solid #64acff;
  color: #64acff;
}


/* =========================
   Currencies/Coins Submenu
========================= */
.submenu__dropdown_coins {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 580px;
}

.submenu:hover .submenu__dropdown_coins {
  transform: translateX(-50%) translateY(0);
}

.coins-submenu {
  background: rgba(20, 24, 32, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

/* Top Stablecoins Link */
.coins-submenu__landing-link_top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(100, 172, 255, 0.08);
  border: 1px solid rgba(100, 172, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.coins-submenu__landing-link_top:hover {
  background: rgba(100, 172, 255, 0.15);
  border-color: rgba(100, 172, 255, 0.35);
}

.coins-submenu__landing-link-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* Coins Grid */
.coins-submenu__coins {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 16px;
}

.coins-submenu__inner-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 160px;
}

.coins-submenu__inner-menu-item {
  margin: 0;
}

.coins-submenu__inner-menu-item + .coins-submenu__inner-menu-item {
  margin-top: 6px;
}

.coins-submenu__inner-menu-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.coins-submenu__inner-menu-item-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.coins-submenu__inner-menu-item-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
}

.coins-submenu__inner-menu-item-coin {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coins-submenu__inner-menu-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.coins-submenu__inner-menu-item-ticker {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

/* Bottom Links */
.coins-submenu__landing-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coins-submenu__landing-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.coins-submenu__landing-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.coins-submenu__landing-link_underline {
  color: var(--brand);
  font-weight: 600;
}

.coins-submenu__landing-link_underline:hover {
  color: var(--brand-hover);
  background: rgba(100, 172, 255, 0.08);
}

/* Arrow Icon */
.coins-submenu__landing-link-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform var(--transition-fast);
}

.coins-submenu__landing-link:hover .coins-submenu__landing-link-arrow {
  transform: rotate(45deg) translateX(2px);
}


/* =========================
   Menu Links - PREVENT WRAPPING
========================= */
.menu__link,
.submenu__name {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px; /* Reduced padding */
  font-size: 14px; /* Slightly smaller font */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
  white-space: nowrap; /* Prevent wrapping */
}


/* =========================
   Help Accordion Section
========================= */
.submenu-mobile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-mobile__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.submenu-mobile__name-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

/* Active State */
.submenu-mobile.active .submenu-mobile__name {
  color: #64acff;
}

.submenu-mobile.active .submenu-mobile__name-icon {
  transform: rotate(180deg);
}

/* List Container */
.submenu-mobile__list {
  display: none;
  list-style: none;
  padding: 0 0 16px 0;
  margin: 0;
}

.submenu-mobile.active .submenu-mobile__list {
  display: block;
}

/* Links */
.menu-mobile__sublink {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.menu-mobile__sublink:hover {
  color: #fff;
}



/* =========================
   Industry Solutions (List with Icons)
========================= */

/* The link container */
.submenu-mobile__list-link-icon {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between icon and text */
  padding: 12px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.submenu-mobile__list-link-icon:hover {
  color: #fff;
  padding-left: 8px; /* Slide effect on hover */
}

/* The icon styles */
.submenu-mobile__list-img {
  width: 24px;
  height: 24px;
  flex-shrink: 0; /* Prevents squishing */
  object-fit: contain;
}

/* Highlight "All Solutions" link */
.submenu-mobile__list-link-highlight {
  color: #64acff; /* Brand color */
  font-weight: 600;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.submenu-mobile__list-link-highlight:hover {
  color: #7ebaff;
}



/* =========================
   Responsive Adjustments - UPDATED
========================= */
@media (max-width: 1400px) {
  .menu {
    gap: 2px; /* Reduced gap */
  }

  .menu__link,
  .submenu__name {
    padding: 8px 8px;
    font-size: 13px;
  }

  .menu__buttons {
    margin-left: 8px;
    padding-left: 8px;
    gap: 8px;
  }

  .menu__button {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Add new breakpoint for very tight spacing */
@media (max-width: 1300px) {
  .menu {
    gap: 0;
  }

  .menu__link,
  .submenu__name {
    padding: 8px 6px;
    font-size: 12px;
  }

  .menu__buttons {
    margin-left: 6px;
    padding-left: 6px;
    gap: 6px;
  }

  .menu__button {
    padding: 8px 12px;
    font-size: 12px;
  }
}





































.alternative-main-screen {
    padding-top: 24px;
    padding-bottom: 40px;
    background-color: #1b1e22
}

.alternative-main-screen__container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.alternative-main-screen__title {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: #fff;
    text-align: center
}

.alternative-main-screen__description {
    margin-top: 16px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
    text-align: center
}

.alternative-main-screen__title .color {
    color: #64acff
}

.alternative-main-screen__title .icon {
    display: inline-block;
    width: 0;
    height: 0
}

.alternative-main-screen__title .icon:before {
    content: "";
    position: relative;
    top: -15px;
    left: -10px;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("/images/affiliate-program/title-decor-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain
}

.alternative-main-screen__image {
    width: 100%;
    max-width: 736px;
    margin-top: 40px
}

.alternative-main-screen__image img {
    width: 100%
}

.alternative-main-screen__buttons {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%
}

.alternative-main-screen__stars {
    display: none
}

@media screen and (min-width: 768px) {
    .alternative-main-screen__image {
        max-width:1200px;
        margin-top: 20px
    }
}

.alternative-main-screen__button_dropdown {
    padding: 0
}

@media screen and (min-width: 992px) {
    .alternative-main-screen {
        padding-top:80px;
        padding-bottom: 20px
    }

    .alternative-main-screen__description {
        width: 600px
    }

    .alternative-main-screen__title {
        font-size: 48px;
        line-height: 56px;
        color: #fff
    }

    .alternative-main-screen__title .icon:before {
        left: -17px;
        width: 45px;
        height: 45px
    }

    .alternative-main-screen__image {
        margin-top: -30px
    }

    .alternative-main-screen__buttons {
        flex-direction: row;
        justify-content: center
    }

    .alternative-main-screen__button {
        width: 240px
    }

    .alternative-main-screen__stars {
        position: absolute;
        display: block
    }

    .alternative-main-screen__stars_left {
        top: 0;
        left: 5px
    }

    .alternative-main-screen__stars_right {
        top: -50px;
        right: 5px
    }
}

.landing-in-numbers {
    background-color: #1b1e22
}

.landing-in-numbers__item-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    text-align: center
}

.landing-in-numbers__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    text-align: center
}

.landing-in-numbers__item_first-block .landing-in-numbers__item-title {
    color: #64acff
}

.landing-in-numbers__item_second-block .landing-in-numbers__item-title {
    color: #fff
}

.landing-in-numbers__item_third-block .landing-in-numbers__item-title {
    color: #ffa3bb
}

.landing-in-numbers__item_forth-block .landing-in-numbers__item-title {
    color: #daff7c
}

.landing-in-numbers__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr -webkit-min-content;
    grid-template-rows: 1fr min-content
}

.landing-in-numbers__item {
    justify-self: center;
    margin-bottom: 24px
}

.landing-in-numbers__item_first-block,.landing-in-numbers__item_second-block {
    max-width: 80px
}

.landing-in-numbers__item_first-block {
    position: relative
}

@media screen and (min-width: 576px) {
    .landing-in-numbers__item_first-block,.landing-in-numbers__item_second-block {
        max-width:none
    }
}

@media screen and (min-width: 992px) {
    .landing-in-numbers__item-text {
        font-size:20px;
        line-height: 28px
    }

    .landing-in-numbers__item-title {
        font-size: 40px;
        line-height: 48px
    }

    .landing-in-numbers__container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr
    }
}

.landing-text-card {
    padding: 15px;
    border: 1px dashed #233952;
    border-radius: 12px;
    background-color: #1b1e22
}

.landing-text-card__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    letter-spacing: .32px
}

.landing-text-card__text {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    letter-spacing: .16px
}

.landing-text-card__sub-text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #53647b
}

.landing-text-card__picture {
    display: block;
    margin-top: 8px
}

.landing-text-card__image {
    display: block
}

.landing-text-card__link {
    display: inline-flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #1b1e22
}

@media screen and (min-width: 992px) {
    .landing-text-card {
        display:flex;
        align-items: stretch;
        justify-content: space-between;
        padding: 24px
    }

    .landing-text-card__text {
        margin-top: 16px;
        font-size: 20px;
        line-height: 28px
    }

    .landing-text-card__picture {
        margin-top: 0
    }
}

.landing-text-cards {
    padding: 40px 0;
    background-color: #1b1e22
}

.landing-text-cards__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
    text-align: center
}

.landing-text-cards__description {
    max-width: 588px;
    margin: 8px auto 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
    text-align: center
}

.landing-text-cards__list {
    margin-top: 32px
}

.landing-text-cards__list_only-desktop {
    display: none
}

.landing-text-cards__card {
    margin-top: 16px
}

.landing-text-cards__card:first-child {
    margin-top: 0
}

.landing-text-cards__buttons {
    margin-top: 40px
}

.landing-text-cards__button {
    margin-top: 16px
}

.landing-text-cards__button:first-child {
    margin-top: 0
}

.landing-text-cards_white {
    background-color: #fff
}

.landing-text-cards_white .landing-text-cards__title {
    color: #13171c
}

.landing-text-cards_white .text-cards-slider-mobile__slide {
    max-width: 345px;
    min-height: 376px;
    padding: 24px;
    border: 0;
    border-radius: 12px;
    color: #13171c;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23E5E5E9FF' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e")
}

.landing-text-cards_white .landing-text-cards__description {
    margin-top: 4px;
    font-size: 22px;
    line-height: 32px;
    color: #13171c
}

.landing-text-cards_white .text-cards-slider-mobile {
    padding-top: 32px
}

.landing-text-cards_white .text-card__title {
    margin-top: 16px;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px
}

.landing-text-cards_white .text-card__text {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px
}

.landing-text-cards_white .slick-track {
    display: flex;
    align-items: stretch
}

.landing-text-cards_white .slick-slider-custom__dots li.slick-active button {
    background-color: #64acff
}

.landing-text-cards_white .slick-slider-custom__dots li button {
    background-color: #eee
}

@media screen and (min-width: 992px) {
    .landing-text-cards {
        padding-bottom:60px
    }

    .landing-text-cards__box {
        position: relative;
        z-index: 1
    }

    .landing-text-cards__box:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 0;
        left: 16px;
        width: 110px;
        height: 78px;
        background-image: url("/images/landings/off-ramp/two-stars.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain
    }

    .landing-text-cards__title {
        font-size: 56px;
        font-weight: 700;
        line-height: 72px
    }

    .landing-text-cards__list_only-desktop {
        display: flex
    }

    .landing-text-cards__list {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        align-items: stretch;
        justify-content: space-between;
        margin-top: 40px
    }

    .landing-text-cards__card {
        width: calc(50% - 12px);
        margin-top: 0
    }

    .landing-text-cards__buttons {
        display: flex;
        gap: 24px;
        align-items: center;
        justify-content: center
    }

    .landing-text-cards__button {
        min-width: 200px;
        margin-top: 0
    }

    .landing-text-cards_white .landing-text-cards__description {
        font-size: 36px;
        font-weight: 600;
        line-height: 44px
    }

    .landing-text-cards_white .landing-text-cards__list {
        margin-top: 32px
    }

    .landing-text-cards_white .landing-text-card {
        flex-direction: column-reverse;
        gap: 16px;
        justify-content: flex-end;
        border: 0;
        border-radius: 12px;
        color: #13171c;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23E5E5E9FF' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e")
    }

    .landing-text-cards_white .landing-text-card__title {
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
        color: #13171c
    }

    .landing-text-cards_white .landing-text-card__text {
        margin-top: 8px;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        color: #13171c
    }
}

.landing-hover-cards {
    padding: 40px 0;
    background-color: #1b1e22
}

.landing-hover-cards__title {
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
    text-align: center
}

.landing-hover-cards__title span {
    display: block;
    color: #daff7c
}

.landing-hover-cards__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    text-align: center;
    letter-spacing: .16px
}

.landing-hover-cards__card {
    width: 100%;
    padding: 16px;
    border: 1px solid #53647b;
    border-radius: 12px;
    background: #242b35
}

.landing-hover-cards__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #fff
}

.landing-hover-cards__card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff
}

.landing-hover-cards__card:nth-child(1) .landing-hover-cards__card-title span,.landing-hover-cards__card:nth-child(5) .landing-hover-cards__card-title span {
    color: #daff7c
}

.landing-hover-cards__card:nth-child(2) .landing-hover-cards__card-title span,.landing-hover-cards__card:nth-child(6) .landing-hover-cards__card-title span {
    color: #ffa3bb
}

.landing-hover-cards__card:nth-child(3) .landing-hover-cards__card-title span,.landing-hover-cards__card:nth-child(4) .landing-hover-cards__card-title span {
    color: #64acff
}

.landing-hover-cards__card-cover .landing-hover-cards__card-title {
    display: none
}

.landing-hover-cards__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px
}

.landing-hover-cards__card-image {
    max-width: 80px;
    margin-bottom: 12px
}

.landing-hover-cards__card-back-side .landing-hover-cards__card-title {
    margin-bottom: 8px
}

.landing-hover-cards__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px
}

@media screen and (min-width: 992px) {
    .landing-hover-cards {
        padding:60px 0
    }

    .landing-hover-cards__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .landing-hover-cards__title {
        font-size: 56px;
        font-weight: 700;
        line-height: 65px
    }

    .landing-hover-cards__description {
        max-width: 993px;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .24px
    }

    .landing-hover-cards__cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        width: 100%
    }

    .landing-hover-cards__card-back-side {
        display: none
    }

    .landing-hover-cards__card:hover .landing-hover-cards__card-back-side {
        display: block
    }

    .landing-hover-cards__card:hover .landing-hover-cards__card-cover {
        display: none
    }

    .landing-hover-cards__card {
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 308px;
        padding: 32px 32px 40px
    }

    .landing-hover-cards__card:after {
        content: "";
        position: absolute;
        right: -3px;
        bottom: -1px;
        display: block;
        width: 50px;
        height: 50px;
        background-image: url("/images/landings/icons/corner.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        transition: all .3s
    }

    .landing-hover-cards__card:hover:after {
        width: 0;
        height: 0
    }

    .landing-hover-cards__card-cover {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .landing-hover-cards__card-title,.landing-hover-cards__card-text {
        text-align: center
    }

    .landing-hover-cards__card-text {
        margin-top: 12px
    }

    .landing-hover-cards__card-image {
        max-width: unset;
        margin-bottom: 16px
    }

    .landing-hover-cards__card-cover .landing-hover-cards__card-title {
        display: block
    }

    .landing-hover-cards__buttons {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        margin-top: 64px
    }

    .landing-hover-cards__button {
        min-width: 200px
    }
}

.landing-our-products {
    padding: 40px 0 100px;
    background-color: #1b1e22
}

.landing-our-products__title {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
    text-align: center
}

.landing-our-products__description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
    text-align: center;
    letter-spacing: .2px
}

.landing-our-products__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.landing-our-products__title span {
    position: relative;
    z-index: 1;
    display: inline-block
}

.landing-our-products__title span:before {
    content: "";
    position: absolute;
    top: -40px;
    right: -23px;
    display: block;
    width: 31px;
    height: 31px;
    background-image: url("/images/api/our-products-decor.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain
}

.landing-our-products__products_desktop {
    display: none
}

.landing-our-products__products_mobile {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0 40px
}

.landing-our-products__card {
    display: block;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    background: #242b35
}

.landing-our-products__card-title {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    letter-spacing: .24px
}

.landing-our-products__card-description {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    letter-spacing: .16px
}

.landing-our-products__card-link {
    position: relative;
    display: inline-flex;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #daff7c
}

.landing-our-products__card-link:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background-image: url("/images/api/our-products-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain
}

.landing-our-products__card-link:active {
    color: #849753
}

.landing-our-products__card-link:active:after {
    background-image: url("/images/api/our-products-arrow-active.svg")
}

.landing-our-products__card-image {
    display: flex;
    justify-content: center
}

.landing-our-products__card-image img {
    width: 100%;
    max-width: 311px
}

@media screen and (min-width: 992px) {
    .landing-our-products {
        padding:80px 0
    }

    .landing-our-products__title {
        margin-bottom: 12px;
        font-size: 56px;
        font-weight: 700;
        line-height: 62px
    }

    .landing-our-products__description {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .16px
    }

    .landing-our-products__buttons {
        flex-direction: row;
        justify-content: center
    }

    .button.landing-our-products__button,.now-button.landing-our-products__button {
        width: 200px
    }

    .landing-our-products__title span:before {
        top: -75px;
        right: -45px;
        width: 60px;
        height: 60px
    }

    .landing-our-products__products_mobile {
        display: none
    }

    .landing-our-products__products_desktop {
        overflow-y: hidden;
        display: block;
        height: 617px;
        padding: 48px 0 30px
    }
}

.landing-trusted {
    padding: 40px 0;
    background-color: #fff
}

.landing-trusted__left {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #212529;
    text-align: center
}

.landing-trusted__title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #13171c;
    text-align: center
}

.landing-trusted__title span {
    color: #64acff
}

.landing-trusted__text {
    margin-top: 16px
}

.landing-trusted__links {
    margin-top: 24px
}

.landing-trusted__links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 16px
}

.landing-trusted__links-item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 70px
}

.landing-trusted__button {
    margin-top: 24px
}

.landing-trusted__right {
    margin-top: 20px
}

.landing-trusted__picture {
    display: block;
    text-align: center
}

.landing-trusted__picture img {
    display: inline-block;
    width: 288px;
    max-width: 100%;
    height: 362px;
    vertical-align: top
}

.landing-trusted__trustpilot-widget-wrapper {
    min-width: 225px;
    min-height: 118px
}

.landing-trusted__trustpilot-widget-wrapper a {
    color: #fff
}

@media screen and (min-width: 375px) {
    .landing-trusted__picture img {
        width:344px;
        height: 432px
    }
}

@media screen and (min-width: 992px) {
    .landing-trusted {
        padding:60px 0
    }

    .landing-trusted__box {
        display: flex;
        flex-direction: row-reverse;
        gap: 16px;
        align-items: center;
        justify-content: space-between
    }

    .landing-trusted__left {
        width: 500px;
        text-align: left
    }

    .landing-trusted__title {
        text-align: left
    }

    .landing-trusted__links {
        margin-top: 32px
    }

    .landing-trusted__button {
        min-width: 100%
    }

    .landing-trusted__right {
        flex-shrink: 0;
        max-width: 450px;
        margin-top: 0
    }

    .landing-trusted__picture img {
        position: relative;
        top: -17px;
        left: -56px;
        width: auto;
        height: auto
    }
}

@media screen and (min-width: 1200px) {
    .landing-trusted__title {
        font-size:56px;
        font-weight: 700;
        line-height: 64px
    }

    .landing-trusted__left {
        width: 612px;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .24px
    }

    .landing-trusted__right {
        max-width: 100%
    }

    .landing-trusted__picture img {
        top: -20px;
        left: -68px
    }

    .landing-trusted__button {
        min-width: 225px
    }

    .landing-trusted__links-list {
        justify-content: flex-start
    }
}

.get-started {
    padding: 40px 0;
    background-color: #fff
}

.get-started__box {
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ADD5FF 0%, #F6FAFF 100%)
}

.get-started__title {
    display: inline-flex;
    padding: 8px;
    border-radius: 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: #64acff;
    background: #fff
}

.get-started__text {
    max-width: 620px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #2b2b36
}

.get-started__links {
    margin-top: 20px
}

.get-started__button {
    height: 48px;
    margin-top: 12px
}

.get-started__button:first-child {
    margin-top: 0
}

.get-started__button.now-button_white-border {
    color: #64acff
}

.get-started__button.now-button_white-border:hover {
    background-color: #f8fcff
}

@media screen and (min-width: 992px) {
    .get-started {
        padding:60px 0
    }

    .get-started__box {
        position: relative;
        z-index: 0;
        overflow: hidden;
        padding: 40px
    }

    .get-started__box:before {
        content: "";
        position: absolute;
        z-index: 0;
        top: -6px;
        right: -7px;
        bottom: 0;
        display: block;
        width: 100%;
        height: calc(100% + 9px);
        background-image: url("/images/get-started-image.svg");
        background-repeat: no-repeat;
        background-position: center right;
        background-size: contain
    }

    .get-started__title {
        position: relative;
        z-index: 1;
        padding: 8px 16px;
        font-size: 44px;
        font-weight: 700;
        line-height: 54px
    }

    .get-started__text {
        position: relative;
        z-index: 1;
        margin-top: 16px;
        line-height: 24px
    }

    .get-started__links {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 40px
    }

    .get-started__button {
        min-width: 200px;
        margin-top: 0;
        margin-left: 16px
    }

    .get-started__button:first-child {
        margin-left: 0
    }
}

.best-suited {
    padding: 64px 0;
    background-color: #fff
}

.best-suited_dark {
    background-color: #1b1e22
}

.best-suited__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    color: #13171c;
    text-align: center
}

.best-suited_dark .best-suited__title {
    color: #fff
}

.best-suited__description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #1b1e22;
    text-align: center;
    letter-spacing: .2px
}

.best-suited__content {
    overflow-x: auto;
    margin: 18px -16px 0;
    padding: 6px 16px
}

.best-suited__list {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 2136px
}

.best-suited__card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 216px;
    min-height: 188px;
    padding: 16px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #13171c;
    text-align: center;
    word-break: break-word;
    background: #fff;
    box-shadow: 0 2px 9px 0 #d9e0e8
}

.best-suited_dark .best-suited__card {
    color: #fff;
    background-color: #242b35;
    box-shadow: none
}

.best-suited__card img {
    display: block;
    margin: 0 auto 12px
}

.best-suited__button {
    margin-top: 40px
}

@media screen and (min-width: 768px) {
    .best-suited__box {
        max-width:100%
    }
}

@media screen and (min-width: 992px) {
    .best-suited__title {
        font-size:44px;
        line-height: 66px
    }

    .best-suited__content {
        margin-top: 40px
    }

    .best-suited__card {
        transition: box-shadow ease .3s
    }

    .best-suited__card:hover {
        box-shadow: 0 2px 14px 0 #c3ccd7
    }

    .best-suited__card:focus {
        box-shadow: 0 2px 4px 0 #d9e0e8
    }

    .best-suited_dark .best-suited__card {
        position: relative
    }

    .best-suited_dark .best-suited__card:after {
        content: "";
        position: absolute;
        z-index: -1;
        top: -2px;
        left: -2px;
        display: block;
        width: calc(100% + 4px);
        height: 0;
        border-radius: 8px;
        transition: height .5s ease
    }

    .best-suited_dark .best-suited__card:hover {
        box-shadow: none
    }

    .best-suited_dark .best-suited__card:hover:after {
        height: 192px;
        background-color: #daff7c
    }

    .best-suited_dark .best-suited__card:focus {
        box-shadow: none
    }

    .best-suited__button {
        display: flex;
        width: 200px;
        margin: 40px auto 0
    }
}

@media screen and (min-width: 1200px) {
    .best-suited {
        padding:60px 0
    }

    .best-suited__box {
        max-width: 1232px
    }

    .best-suited__content {
        overflow-x: visible;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0
    }

    .best-suited__list {
        flex-wrap: wrap;
        min-width: 100%
    }

    .best-suited__card {
        width: calc(20% - 24px)
    }

    .best-suited__card:nth-child(1),.best-suited__card:nth-child(2),.best-suited__card:nth-child(3),.best-suited__card:nth-child(4) {
        width: calc(25% - 24px)
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,.slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid rgba(0,0,0,0)
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-slider-button {
    position: relative;
    -webkit-transform: none;
    transform: none;
    display: block;
    width: 44px;
    height: 100%;
    padding: 0 10px;
    border: none;
    background-color: rgba(0,0,0,0);
    background-repeat: no-repeat;
    background-size: contain
}

.slick-slider-button:before {
    display: none
}

.slick-slider-custom {
    position: relative
}

.slick-slider-custom .slick-list {
    padding-bottom: 6px
}

.slick-slider-custom .slick-prev,.slick-slider-custom .slick-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px;
    background-color: rgba(0,0,0,0);
    transition: background-color ease .3s
}

.slick-slider-custom .slick-prev {
    left: -50px
}

.slick-slider-custom .slick-next {
    right: -50px
}

.slick-slider-custom .slick-prev svg,.slick-slider-custom .slick-next svg {
    transition: .3s
}

.slick-slider-custom .slick-prev:hover svg,.slick-slider-custom .slick-next:hover svg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.slick-slider-custom .slick-prev:hover svg path,.slick-slider-custom .slick-next:hover svg path {
    fill: #81aff4;
    stroke: #81aff4
}

.slick-slider-custom__dots {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 16px 0;
    text-align: center;
    list-style-type: none
}

.slick-slider-custom__dots li {
    display: inline-block;
    vertical-align: middle
}

.slick-slider-custom__dots li button {
    display: block;
    width: 8px;
    height: 8px;
    margin: 2px;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    text-indent: -99999px;
    background-color: #3d3d58
}

.slick-slider-custom__dots li.slick-active button {
    background-color: #00c26f
}

.slick-slider-custom_line-indicators .slick-slider-custom__dots {
    flex-wrap: nowrap;
    gap: 4px
}

.slick-slider-custom_line-indicators .slick-slider-custom__dots li {
    width: 100%
}

.slick-slider-custom_line-indicators .slick-slider-custom__dots li button {
    width: 100%;
    height: 4px;
    border-radius: 12px;
    background-color: #53647b;
    transition: background-color .3s ease
}

.slick-slider-custom_line-indicators .slick-slider-custom__dots li.slick-active button {
    background-color: #64acff
}

.accordion {
    position: relative;
    border-top: 1px solid #e5e5e9;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #2b2b36
}

.accordion:last-child {
    border-bottom: 1px solid #e5e5e9
}

.accordion__title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px 16px 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    outline: none
}

.accordion__title:focus-visible {
    border-radius: 8px;
    box-shadow: 0 0 5px 1px #64acff
}

.accordion__button {
    pointer-events: none;
    position: absolute;
    top: 20px;
    right: 0;
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0,0,0,0);
    outline: none;
    transition: all .2s ease-in-out
}

.accordion__button:before,.accordion__button:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: #64acff
}

.accordion__button:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.accordion__content {
    overflow: hidden;
    display: block;
    max-width: 842px;
    max-height: 0;
    margin: 0;
    font-weight: 300;
    line-height: 24px;
    opacity: 0;
    transition: all .3s ease-in-out
}

.accordion__content p {
    font-weight: 300
}

.accordion__content strong {
    font-weight: 600
}

.accordion__content ul,.accordion__content ol {
    margin-left: 25px
}

.accordion__content a {
    font-weight: 600;
    color: #64acff
}

.accordion_open .accordion__button {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.accordion_open .accordion__content {
    max-height: 6000px;
    padding-bottom: 16px;
    opacity: 1
}

@media screen and (min-width: 992px) {
    .accordion {
        font-size:20px;
        line-height: 24px
    }

    .accordion__title {
        padding-top: 24px;
        padding-bottom: 24px
    }

    .accordion__content {
        line-height: 28px
    }

    .accordion__button {
        top: 29px
    }
}

.input {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #13171c;
    background-color: #fff
}

.input::-webkit-input-placeholder {
    color: #a4a4a4
}

.input::-moz-placeholder {
    color: #a4a4a4
}

.input::-ms-input-placeholder {
    color: #a4a4a4
}

.input::placeholder {
    color: #a4a4a4
}

.input_error {
    border-color: #ff7da0
}

.input_success {
    border-color: #61bc6a
}

.field {
    position: relative;
    display: block;
    width: 100%
}

.field__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.field__title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #13171c
}

.field__title-optional {
    color: #a4a4a4
}

.field__box {
    position: relative
}

.field__input_with-icon {
    padding-right: 30px
}

.field__icon {
    position: absolute;
    right: 1px;
    bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    margin: auto;
    padding-right: 10px;
    padding-left: 5px;
    border-radius: 8px;
    background-color: rgba(0,0,0,0)
}

.field__error {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #ff7da0;
    text-align: right
}

.field_ticker {
    position: absolute;
    right: 1px;
    bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: auto;
    padding-left: 5px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #13171c;
    background-color: rgba(0,0,0,0)
}

.field__error_bottom {
    position: absolute;
    bottom: -24px;
    margin-bottom: 0
}

.checkbox {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start
}

.checkbox:hover .checkbox__box {
    border-color: #64acff
}

.checkbox__input {
    display: none
}

.checkbox__box {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color,background-color,ease .3s
}

.checkbox__box:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 8px;
    height: 4px;
    border: 2px solid #fff;
    border-top: 0;
    border-right: 0;
    border-radius: 2px
}

.checkbox__text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #13171c
}

.checkbox__input:checked+.checkbox__box {
    border-color: #64acff;
    background-color: #64acff
}

.checkbox_error .checkbox__box {
    border-color: #ff7da0
}

.button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    background-color: #64acff;
    transition: background ease .3s
}

.button:hover {
    background-color: #73b1fa
}

.button:disabled {
    pointer-events: none;
    opacity: .5
}

.button_black-border {
    border: 1px solid #64acff;
    color: #fff;
    background-color: #1b1e22
}

.button_black-border:hover {
    background-color: #64acff
}

.button_blue-text {
    color: #64acff
}

.button_blue-text:hover {
    background-color: rgba(100,172,255,.1490196078)
}

@media screen and (min-width: 992px) {
    .button {
        width:auto;
        font-size: 20px;
        line-height: 28px
    }
}

.popup {
    position: fixed;
    z-index: 12;
    top: 0;
    left: -100%;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition: opacity ease .3s
}

.popup_active {
    left: 0;
    visibility: visible;
    opacity: 1
}

.popup__overlay {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    outline: 0
}

.popup__content {
    position: relative;
    z-index: 1;
    margin: auto;
    padding: 30px 16px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.06)
}

.popup__content_bottom {
    width: 100%;
    margin: auto 0 -100%;
    padding: 24px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: all .3s ease
}

.popup_active .popup__content_bottom {
    margin-bottom: 0
}

.popup__close {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border: 4px solid rgba(0,0,0,0);
    outline: 0
}

.popup__content_bottom .popup__close {
    top: 24px;
    right: 24px;
    width: 23px;
    height: 23px
}

.popup__close-line {
    position: absolute;
    top: 7px;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: rgba(0,0,0,.7)
}

.popup__close-line:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.popup__close-line:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.popup__content_bottom .popup__close-line {
    top: 5px;
    background-color: #7e7e7e
}

.popup__close_blue .popup__close-line {
    background-color: #64acff
}

.popup__close_grey .popup__close-line {
    background-color: #a4a4a4
}

.popup__icon {
    text-align: center
}

.popup__icon img {
    display: inline-block;
    vertical-align: top
}

.popup__title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #13171c;
    text-align: center
}

.popup__description {
    max-width: 435px;
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 20px;
    color: #868a99;
    text-align: center
}

.popup_mobile-full-view {
    padding: 0
}

.popup_mobile-full-view .popup__content {
    width: 100%;
    min-height: 100%;
    padding: 16px;
    border-radius: 0
}

.popup_without-padding .popup__content {
    padding: 0
}

@media screen and (min-width: 768px) {
    .popup__content {
        padding:35px
    }

    .popup__title {
        font-size: 24px;
        line-height: 28px
    }

    .popup_mobile-full-view {
        padding: 10px
    }

    .popup_mobile-full-view .popup__content {
        width: auto;
        min-height: auto;
        padding: 30px 16px;
        border-radius: 10px
    }

    .popup_without-padding .popup__content {
        padding: 0
    }
}

.support-form-header {
    position: relative;
    z-index: 0;
    margin-right: -16px;
    margin-left: -16px;
    padding: 12px 10px;
    background-color: #f9f9f9
}

.support-form-header__button-back {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 16px;
    margin: auto
}

.support-form-header__button-back img {
    display: block
}

.support-form-header__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #13171c;
    text-align: center
}

@media screen and (min-width: 991px) {
    .support-form-header {
        margin-right:-40px;
        margin-left: -40px
    }

    .support-form-header__button-back {
        left: 40px
    }
}

.support-form-step-icons {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.support-form-step-icons__line {
    display: block;
    width: 14%;
    height: 1px;
    background-color: #64acff
}

@media screen and (min-width: 768px) {
    .support-form-step-icons__line {
        width:15%
    }
}

.support-form-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.support-form-group__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #13171c
}

.support-form-group__right-element {
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    color: #13171c;
    text-align: right
}

.support-form-group__body {
    margin-top: 16px
}

.support-form-finished {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #13171c;
    text-align: center
}

.support-form-finished img {
    display: block;
    max-width: 100%;
    margin: 0 auto
}

.support-form-finished__title {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px
}

.support-form-finished__text {
    margin-top: 16px
}

.support-form {
    padding: 24px 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,.12)
}

.support-form_with-steps {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 0;
    border-radius: 0;
    box-shadow: none
}

.support-form__step-icons {
    margin-top: 24px
}

.support-form__group {
    margin-top: 32px
}

.support-form__group:first-child {
    margin-top: 0
}

.support-form__group-field {
    margin-top: 16px
}

.support-form__checkbox {
    margin-top: 16px
}

.support-form__button {
    height: 48px;
    margin-top: 4px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

.support-form__recaptcha {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 32px;
    margin-bottom: -16px
}

.support-form__error-message {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 24px;
    margin-top: 4px;
    font-size: 14px;
    line-height: 16px;
    color: #ff7da0;
    text-align: center
}

.support-form_with-steps .support-form__error-message {
    margin-top: auto;
    padding-top: 4px
}

.support-form__button_border {
    border-color: #64acff;
    color: #64acff;
    background-color: #fff
}

.support-form__button_border:hover {
    color: #64acff;
    background-color: rgba(100,172,255,.1)
}

@media screen and (min-width: 400px) {
    .support-form__recaptcha {
        -webkit-transform:none;
        transform: none;
        margin-bottom: 0
    }
}

@media screen and (min-width: 768px) {
    .support-form_with-steps {
        min-height:615px
    }
}

@media screen and (min-width: 992px) {
    .support-form {
        padding:40px
    }

    .support-form_with-steps {
        min-height: 615px;
        padding-top: 0
    }

    .support-form__button {
        width: 240px;
        margin-right: auto;
        margin-left: auto
    }

    .support-form_with-steps .support-form__button {
        width: 100%
    }
}

@media screen and (min-width: 768px) {
    .modal-contact-us_new-theme .popup__content {
        overflow:hidden;
        width: 100%;
        max-width: 510px
    }
}

.section {
    padding: 40px 0;
    background-color: #fff
}

.section__title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #13171c;
    text-align: center
}

.section__description {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #13171c;
    text-align: center
}

.section__content {
    margin-top: 32px
}

@media screen and (min-width: 992px) {
    .section {
        padding:60px 0
    }

    .section__title {
        font-size: 36px;
        line-height: 42px
    }

    .section__content {
        margin-top: 40px
    }
}

.our-partners {
    overflow-x: auto;
    margin-right: -16px;
    margin-left: -16px
}

.our-partners__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 950px;
    margin-top: -24px;
    margin-left: -24px;
    padding-right: 16px;
    padding-left: 16px
}

.our-partners__link {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 35px;
    margin-top: 24px;
    margin-left: 24px;
    text-align: center
}

.our-partners__link img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%
}

@media screen and (min-width: 768px) {
    .our-partners {
        overflow-x:visible
    }

    .our-partners__list {
        justify-content: center;
        min-width: auto
    }
}

@media screen and (min-width: 1200px) {
    .our-partners__list {
        margin-top:-30px;
        margin-left: -40px
    }

    .our-partners__link {
        height: 50px;
        margin-top: 30px;
        margin-left: 40px
    }

    .our-partners__link:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    .our-partners__link img {
        transition: -webkit-transform ease .2s;
        transition: transform ease .2s;
        transition: transform ease .2s, -webkit-transform ease .2s
    }
}

.text-card {
    padding: 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    background-color: #2f353e
}

.text-card__title {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px
}

.text-card__text {
    margin-top: 8px
}

.text-cards-slider-mobile {
    padding-top: 40px
}

.text-cards-slider-mobile__slide {
    max-width: 345px;
    min-height: 264px;
    margin: 0 auto
}

.text-cards-slider-mobile .slick-list {
    height: auto;
    padding-bottom: 0
}

.text-cards-slider-mobile .slick-slider-custom__dots {
    padding: 12px 0 0
}

.text-cards-slider-mobile .slick-slider-custom__dots li button {
    background-color: #406ea3
}

.text-cards-slider-mobile .slick-slider-custom__dots li.slick-active button {
    background-color: #daff7c
}

.how-it-works-card {
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    background-color: #1b1e22
}

.how-it-works-card__image {
    display: block;
    margin: 0 auto
}

.how-it-works-card__title {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: center
}

.how-it-works-card__text {
    margin-top: 8px;
    text-align: center
}

.how-it-works-card__text a {
    color: #64acff
}

.how-it-works-slider-mobile__list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 2285px;
    padding: 0 16px
}

.how-it-works-slider-mobile__slide {
    max-width: 345px;
    margin: 0 auto
}

.how-it-works-slider-mobile_new-theme .slick-list {
    height: auto;
    padding-bottom: 0
}

.how-it-works-slider-mobile_new-theme .slick-slider-custom__dots {
    padding: 12px 0
}

.how-it-works-slider-mobile_new-theme .slick-slider-custom__dots li button {
    background-color: #406ea3
}

.how-it-works-slider-mobile_new-theme .slick-slider-custom__dots li.slick-active button {
    background-color: #daff7c
}

.how-it-works-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.how-it-works-desktop__slide {
    width: 100%;
    max-width: 282px
}

@media screen and (min-width: 1200px) {
    .how-it-works-desktop__slide {
        position:relative;
        z-index: 1
    }

    .how-it-works-desktop__slide:not(:last-child):before {
        content: "";
        position: absolute;
        top: calc(50% - 8px);
        left: 100%;
        width: 169px;
        height: 34px;
        background-image: url("/images/landings/icons/how-it-works-arrow.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain
    }
}

.section-about-service__slider_desktop {
    min-height: 400px;
    text-align: center
}

.section-about-service__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 16px
}

.section-about-service__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center
}

.section-about-service__link {
    display: block;
    width: 140px;
    text-align: center
}

.section-about-service__link img {
    display: inline-block;
    vertical-align: top
}

.section-about-service__trustpilot-wrapper {
    min-width: 225px;
    min-height: 118px
}

.section-about-service__trustpilot-link {
    color: #fff
}

@media screen and (min-width: 375px) {
    .section-about-service__links {
        max-width:470px;
        margin-right: auto;
        margin-left: auto
    }

    .section-about-service__link {
        width: 160px
    }
}

@media screen and (min-width: 768px) {
    .section-about-service__links {
        flex-direction:row;
        justify-content: space-between;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0
    }

    .section-about-service__link:last-child {
        margin-top: 0
    }

    .section-about-service__slider_desktop-de .review-card,.section-about-service__slider_desktop-fr .review-card {
        min-height: 448px
    }

    .section-about-service__slider_desktop-de div.slick-list,.section-about-service__slider_desktop-fr div.slick-list {
        min-height: 468px
    }

    .section-about-service__slider_desktop-ge .review-card {
        min-height: 520px
    }

    .section-about-service__slider_desktop-ge div.slick-list {
        min-height: 540px
    }
}

@media screen and (min-width: 992px) {
    .section-about-service__badges {
        margin-right:48px
    }

    .section-about-service__slider_desktop-de .review-card,.section-about-service__slider_desktop-fr .review-card {
        min-height: 400px
    }

    .section-about-service__slider_desktop-de div.slick-list,.section-about-service__slider_desktop-fr div.slick-list {
        min-height: 420px
    }

    .section-about-service__slider_desktop-ge .review-card {
        min-height: 444px
    }

    .section-about-service__slider_desktop-ge div.slick-list {
        min-height: 464px
    }
}

@media screen and (min-width: 1200px) {
    .section-about-service__slider_desktop-de .review-card,.section-about-service__slider_desktop-fr .review-card {
        min-height:448px
    }

    .section-about-service__slider_desktop-de div.slick-list,.section-about-service__slider_desktop-fr div.slick-list {
        min-height: 468px
    }

    .section-about-service__slider_desktop-ge .review-card {
        min-height: 542px
    }

    .section-about-service__slider_desktop-ge div.slick-list {
        min-height: 562px
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 9px 0 #d9e0e8
}

.review-card__author {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start
}

.review-card__author-image {
    overflow: hidden;
    flex-shrink: 0;
    width: 60px;
    height: 56px;
    margin-right: 12px;
    border-radius: 50%
}

.review-card__author-image img {
    width: 60px;
    height: 56px
}

.review-card__author-content {
    flex-grow: 1;
    text-align: left
}

.review-card__author-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #212529;
    letter-spacing: .24px
}

.review-card__author-text,.review-card__author-company {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    color: #212529;
    letter-spacing: .16px
}

.review-card__author-company {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    vertical-align: top
}

.review-card__author-company:before {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #212529;
    transition: opacity ease .3s
}

.review-card__author-company:hover:before,.review-card__author-company:focus:before {
    opacity: 0
}

.review-card__icon {
    margin-top: 16px
}

.review-card__icon img {
    display: block
}

.review-card__text {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #212529;
    text-align: left;
    letter-spacing: .16px
}

.review-card__logo {
    margin-top: auto;
    padding-top: 24px
}

.review-card__logo a,.review-card__logo img {
    display: block
}

.review-card_float .review-card__author {
    display: block
}

.review-card_float .review-card__author-image {
    float: left
}

.review-card_float .review-card__author-name {
    max-width: 99%
}

@media screen and (min-width: 992px) {
    .review-card {
        padding:24px
    }

    .review-card__icon {
        margin-top: 20px
    }
}

.reviews-slider-mobile {
    overflow-x: auto;
    margin: 0 -16px;
    padding: 10px 0
}

.reviews-slider-mobile__list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 1320px;
    padding: 0 16px
}

.reviews-slider-mobile__slide {
    flex-shrink: 0;
    width: 310px;
    min-height: 400px;
    margin-left: 16px
}

.reviews-slider-mobile__slide:first-child {
    margin-left: 0
}

.reviews-slider-mobile__slide_theme_new .review-card__author-text {
    min-height: 48px
}

.reviews-slider-desktop {
    max-width: 90%;
    margin: 0 auto
}

.reviews-slider-desktop__slide {
    min-height: 400px
}

.reviews-slider-desktop_new-theme .slick-list {
    min-height: 420px
}

.reviews-slider-desktop_new-theme .slick-slide {
    padding: 10px 8px
}

.reviews-slider-desktop_new-theme .slick-prev,.reviews-slider-desktop_new-theme .slick-next {
    height: 96%
}

.reviews-slider-desktop_new-theme .review-card__author-text {
    min-height: 48px
}

@media screen and (min-width: 1300px) {
    .reviews-slider-desktop {
        max-width:95%
    }

    .reviews-slider-desktop_new-theme .review-card__author {
        display: flex
    }

    .reviews-slider-desktop_new-theme .review-card__author-image {
        float: none
    }

    .reviews-slider-desktop_new-theme .review-card__author-name {
        max-width: 100%
    }
}

.products-hover-menu {
    display: flex;
    flex-direction: column;
    width: calc(50% - 28px)
}

.products-hover-menu .accordion {
    max-height: 65px;
    border-top: 1px solid #282e37;
    transition: all .5s ease
}

.products-hover-menu .accordion_open {
    max-height: 300px
}

.products-hover-menu .accordion:first-child {
    border-top: none
}

.products-hover-menu .accordion:last-child {
    border-bottom: none
}

.products-hover-menu .accordion__content p {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff
}

.products-hover-menu .accordion__title {
    justify-content: flex-start;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #fff
}

.products-hover-menu a {
    position: relative;
    display: inline-flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #daff7c
}

.products-hover-menu a:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background-image: url("/images/api/our-products-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain
}

.products-hover-menu a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: 0;
    height: 1px;
    background-color: #daff7c;
    transition: width .5s
}

.products-hover-menu a:active {
    color: #849753
}

.products-hover-menu a:active:after {
    background-image: url("/images/api/our-products-arrow-active.svg")
}

.products-hover-menu a:hover:before {
    width: 100%
}

.products-hover-menu .accordion__button:before,.products-hover-menu .accordion__button:after {
    height: 1px;
    background: #fff
}

.products-hover-menu .accordion .accordion__button:after {
    opacity: 1;
    transition: all .3s ease
}

.products-hover-menu .accordion_open .accordion__button:after {
    opacity: 0
}

.products-hover-menu .accordion__button {
    width: 14px;
    height: 14px
}

.products-hover-menu .accordion_open .accordion__button {
    -webkit-transform: none;
    transform: none
}

.products-hover-menu .accordion__content {
    transition: all .5s ease
}

.products-hover-menu__menu-item {
    cursor: pointer;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
    transition: all .5s ease
}

.products-hover-menu__menu-item:not(:last-child) {
    margin-bottom: 40px
}

.products-hover-menu__menu-item_active {
    color: #64acff
}

@media screen and (min-width: 992px) {
    .products-hover-menu .accordion__title {
        padding:16px 25px 16px 0
    }

    .products-hover-menu .accordion__button {
        top: 20px
    }
}

@media screen and (min-width: 992px) {
    .faq h2 {
        font-size:56px;
        font-weight: 700;
        line-height: 72px
    }
}

.api-trusted-by-section {
    padding-bottom: 50px;
    background-color: #1b1e22
}

.api-trusted-by-section .section__title {
    color: #fff
}

.api-trusted-by-section .section__content {
    margin-top: 32px
}

.api-trusted-by-section .our-partners__link {
    height: 26px;
    margin-left: 32px
}

.api-trusted-by-section .our-partners__list {
    min-width: 1070px
}

@media screen and (min-width: 768px) {
    .api-trusted-by-section .our-partners__list {
        min-width:unset
    }
}

@media screen and (min-width: 992px) {
    .api-trusted-by-section {
        padding:80px 0
    }

    .api-trusted-by-section .section__title {
        font-size: 56px;
        line-height: 64px
    }

    .api-trusted-by-section .section__content {
        margin-top: 40px
    }

    .api-trusted-by-section .our-partners {
        display: flex;
        justify-content: center
    }

    .api-trusted-by-section .our-partners__link {
        margin-top: 32px
    }

    .api-trusted-by-section .our-partners__list {
        max-width: 1070px
    }
}

@media screen and (min-width: 1200px) {
    .api-trusted-by-section .our-partners__list {
        justify-content:space-between;
        max-width: 1100px
    }

    .api-trusted-by-section .our-partners__link {
        margin-left: 48px
    }

    .api-trusted-by-section .our-partners__link:nth-child(7) img {
        max-width: 134px
    }

    .api-trusted-by-section .our-partners__link:nth-child(8) img {
        max-width: 138px
    }

    .api-trusted-by-section .our-partners__link:nth-child(9) img {
        max-width: 160px
    }

    .api-trusted-by-section .our-partners__link:nth-child(10) img {
        max-width: 149px
    }
}

.api-products {
    display: flex;
    gap: 56px
}

.api-products .products-hover-menu .accordion:nth-child(1) .accordion__title:before {
    background-image: url("/images/api/products/icons/payment-api.svg")
}

.api-products .products-hover-menu .accordion:nth-child(2) .accordion__title:before {
    background-image: url("/images/api/products/icons/mass-payouts.svg")
}

.api-products .products-hover-menu .accordion:nth-child(3) .accordion__title:before {
    background-image: url("/images/api/products/icons/custody.svg")
}

.api-products .products-hover-menu .accordion:nth-child(4) .accordion__title:before {
    background-image: url("/images/api/products/icons/customers.svg")
}

.api-products .products-hover-menu .accordion:nth-child(5) .accordion__title:before {
    background-image: url("/images/api/products/icons/payments.svg")
}

.api-products .products-hover-menu .accordion:nth-child(6) .accordion__title:before {
    background-image: url("/images/api/products/icons/fiat.svg")
}

.api-products .products-hover-menu .accordion__title:before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain
}

.api-products-code-example {
    display: flex;
    flex-direction: column;
    width: calc(50% - 28px);
    height: 513px;
    border: 2px solid #29313a;
    border-radius: 16px
}

.api-products-code-example pre {
    overflow: scroll;
    flex-grow: 1;
    width: 100%;
    padding: 16px;
    border-radius: 0 0 14px 14px;
    background: #29313a
}

.api-products-code-example__code {
    height: 100%
}

.api-products-code-example__header {
    display: flex;
    justify-content: space-between;
    padding: 32px 32px 16px
}

.api-products-code-example__header-data {
    display: flex;
    gap: 20px;
    justify-content: space-between
}

.api-products-code-example__header-languages,.api-products-code-example__header-method {
    display: flex;
    gap: 8px
}

.api-products-code-example__header-method {
    align-items: center
}

.api-products-code-example__header-curl {
    padding: 0 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    background-color: #29313a
}

.api-products-code-example__header-lang-counter {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #7e7e7e
}

.api-products-code-example__header-request {
    font-size: 8px;
    font-weight: 400;
    line-height: 18px;
    color: #e1b23d
}

.api-products-code-example__header-method-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff
}

.api-products-code-example .hljs {
    padding: 0;
    background: #29313a
}

.api-products-code-example .hljs-string {
    color: #daff7c
}

.api-products-code-example .hljs-property {
    color: #ff5280
}

.api-products-code-example .hljs-keyword {
    color: #a4a4a4
}

.api-products-code-example .hljs-separator {
    color: #fff
}

.api-products-code-example__header-copy-button .copy-button-img-copy {
    display: none
}

.api-products-code-example__header-copy-button .copy-button {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-image: url("/images/api/copy-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: all .3s ease
}

.api-products-code-example__header-copy-button .copy-button:hover {
    background-image: url("/images/api/copy-hover-icon.svg")
}

.api-products-code-example__header-copy-button .copy-button-img-success {
    width: 24px;
    height: 24px
}

@media screen and (min-width: 1200px) {
    .api-products-code-example pre {
        padding:16px 32px
    }

    .api-products-code-example__header-data {
        gap: 72px
    }
}

.api-how-it-works-section {
    padding: 80px 0;
    background-color: #222c3a
}

.api-how-it-works-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff
}

.api-how-it-works-section .section__description {
    color: #fff
}

.api-how-it-works-section__buttons {
    margin-top: 0
}

.api-how-it-works-section .slick-slider-custom__dots {
    padding: 27px 0
}

.api-how-it-works-section .how-it-works-card {
    padding: 16px 0;
    background-color: #222c3a
}

@media screen and (min-width: 992px) {
    .api-how-it-works-section {
        padding:100px 0 160px;
        background-color: #1b1e22
    }

    .api-how-it-works-section .section__content {
        margin-top: 32px
    }

    .api-how-it-works-section h2 {
        font-size: 56px;
        font-weight: 700;
        line-height: 64px
    }

    .api-how-it-works-section .container {
        position: relative;
        padding: 40px 0;
        background-color: #29313a
    }

    .api-how-it-works-section .container:before {
        content: "";
        position: absolute;
        top: -40px;
        display: block;
        width: 100%;
        max-width: 1232px;
        height: 50px;
        background-image: url("/images/api/circles-top.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover
    }

    .api-how-it-works-section .container:after {
        content: "";
        position: absolute;
        bottom: -40px;
        display: block;
        width: 100%;
        max-width: 1232px;
        height: 50px;
        background-image: url("/images/api/circles-bottom.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover
    }

    .api-how-it-works-section .section__description {
        font-size: 20px
    }

    .api-how-it-works-section__button {
        width: 200px
    }

    .api-how-it-works-section__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px
    }

    .api-how-it-works-section .how-it-works-card {
        padding: 16px 8px;
        background-color: rgba(0,0,0,0)
    }

    .api-how-it-works-section .how-it-works-desktop {
        padding: 0 16px
    }

    .api-how-it-works-section .how-it-works-desktop__slide {
        position: relative;
        z-index: 1
    }

    .api-how-it-works-section .how-it-works-desktop__slide:not(:last-child):before {
        content: "";
        position: absolute;
        top: calc(50% - 8px);
        left: 100%;
        width: 70px;
        height: 16px;
        background-image: url("/images/api/how-it-works-arrow.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain
    }
}

@media screen and (min-width: 1200px) {
    .api-how-it-works-section .how-it-works-desktop__slide:not(:last-child):before {
        -webkit-transform:translateX(25%);
        transform: translateX(25%);
        width: 128px;
        height: 30px
    }
}

.api-faq-section {
    padding-top: 60px
}

@media screen and (min-width: 992px) {
    .api-faq-section {
        padding-top:80px
    }
}

.api-main-screen .alternative-main-screen__image {
    max-width: 343px;
    margin-top: 8px
}

.api-main-screen .alternative-main-screen__title {
    font-size: 35px
}

.api-main-screen .alternative-main-screen__title .pink {
    color: #ffa3bb
}

.api-main-screen .alternative-main-screen__title .green {
    color: #daff7c
}

.api-main-screen .alternative-main-screen__title .blue {
    color: #64acff
}

.api-main-screen .landing-in-numbers {
    width: 100%;
    padding: 56px 0 0
}

.api-main-screen .landing-in-numbers__item_forth-block .landing-in-numbers__item-title {
    font-size: 46px
}

.api-main-screen .landing-in-numbers__item_first-block {
    max-width: unset
}

.api-cards .landing-text-cards__title span {
    color: #64acff
}

.api-trusted-by {
    min-height: 238px;
    background-color: #1b1e22
}

.api-cards .landing-text-cards__mobile-slider {
    min-height: 328px
}

.api-hover-cards .landing-hover-cards__card:nth-child(1) .landing-hover-cards__card-title span {
    color: #ffa3bb
}

.api-hover-cards .landing-hover-cards__card:nth-child(2) .landing-hover-cards__card-title span,.api-hover-cards .landing-hover-cards__card:nth-child(4) .landing-hover-cards__card-title span {
    color: #daff7c
}

.api-hover-cards .landing-hover-cards__card:nth-child(5) .landing-hover-cards__card-title span {
    color: #64acff
}

.api-hover-cards {
    padding: 80px 0
}

.api-reliable-service .section {
    padding: 80px 0 60px
}

.api-use-cases {
    padding: 40px 0 60px
}

.api-use-cases .best-suited__title {
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px
}

.api-use-cases .best-suited__content {
    margin-top: 32px
}

.api-use-cases .best-suited__list {
    justify-content: space-between;
    min-width: 936px
}

.api-use-cases .best-suited__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.api-how-it-works {
    min-height: 538px;
    background-color: #222c3a
}

.api-reliable-service {
    min-height: 724px
}

.api-faq {
    min-height: 491px
}

.api_gb .landing-in-numbers__container {
    display: flex;
    gap: 10px;
    justify-content: center
}

@media screen and (min-width: 992px) {
    .api-main-screen .alternative-main-screen {
        padding-top:100px;
        padding-bottom: 80px
    }

    .api-main-screen .alternative-main-screen__image {
        position: absolute;
        top: -70px;
        max-width: 1100px;
        margin-top: 0
    }

    .api-main-screen .alternative-main-screen__title {
        z-index: 1;
        font-size: 48px
    }

    .api-main-screen .landing-in-numbers__item_forth-block .landing-in-numbers__item-title {
        font-size: 60px
    }

    .api-main-screen .landing-in-numbers {
        padding: 200px 0 0
    }

    .api-main-screen .landing-in-numbers__item {
        margin-bottom: 0
    }

    .api-trusted-by {
        min-height: 390px
    }

    .api-cards .landing-text-cards__mobile-slider {
        min-height: unset
    }

    .api-cards {
        padding: 80px 0
    }

    .api-cards .landing-text-cards__box:before {
        top: -30px;
        background-image: url("/images/api/advantages-decor.svg")
    }

    .api-cards .landing-text-cards__title {
        line-height: 64px
    }

    .api-cards .landing-text-cards__description {
        max-width: 743px;
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px
    }

    .api-cards .landing-text-card {
        flex-direction: row-reverse;
        gap: 24px;
        align-items: center;
        justify-content: flex-end;
        padding: 28px 16px;
        border: 1px solid #282e37
    }

    .api-cards .landing-text-card:nth-child(1) .landing-text-card__title span {
        color: #daff7c
    }

    .api-cards .landing-text-card:nth-child(2) .landing-text-card__title span {
        color: #64acff
    }

    .api-cards .landing-text-card:nth-child(3) .landing-text-card__title span {
        color: #ffa3bb
    }

    .api-cards .landing-text-card:nth-child(4) .landing-text-card__title span {
        color: #daff7c
    }

    .api-cards .landing-text-card__title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: .2px
    }

    .api-cards .landing-text-card__text {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px
    }

    .api-cards .landing-hover-cards {
        padding: 30px 0 140px
    }

    .api-hover-cards .landing-hover-cards__title {
        margin-bottom: 0
    }

    .api-hover-cards .landing-hover-cards__buttons {
        margin-top: 40px
    }

    .api-reliable-service .section {
        padding: 120px 0 80px
    }

    .api-reliable-service .section__title {
        font-size: 56px;
        line-height: 72px
    }

    .api-use-cases {
        padding: 60px 0 80px
    }

    .api-use-cases .best-suited__list {
        min-width: 100%
    }

    .api-use-cases .best-suited__title {
        position: relative;
        font-size: 56px;
        font-weight: 700;
        line-height: 72px
    }

    .api-use-cases .best-suited__title:before {
        content: "";
        position: absolute;
        top: -10px;
        left: 0;
        display: block;
        width: 128px;
        height: 80px;
        background-image: url("/images/api/use-cases-decor.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain
    }

    .api-how-it-works {
        min-height: 740px;
        background-color: #1b1e22
    }

    /* .api-reliable-service {
        min-height: 832px
    } */

    .api-faq {
        min-height: 579px
    }

    .api_gb .landing-in-numbers__container {
        gap: 30px
    }
}

@media screen and (min-width: 1200px) {
    .api-trusted-by {
        min-height:346px
    }
}







/* Syntax Highlighting */
.hljs-keyword { color: #cba6f7; font-weight: bold; }
.hljs-string { color: #a6e3a1; }
.hljs-property { color: #89b4fa; }
.hljs-separator { color: #89dceb; }

/* Transition for smooth text swap */
.j-code-block {
  transition: opacity 0.2s ease;
}




































































/* =========================
   Get Started Section
========================= */
.get-started {
  padding: 40px 0;
  background-color: #fff;
}

/* Gradient Box */
.get-started__box {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ADD5FF 0%, #F6FAFF 100%);
  position: relative; /* For z-index context */
}

/* Title Label */
.get-started__title {
  display: inline-flex;
  padding: 8px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #64acff;
  background: #fff;
  margin-bottom: 0;
}

/* Text */
.get-started__text {
  max-width: 620px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #2b2b36;
}

/* Buttons Container */
.get-started__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

/* Buttons Base */
.get-started__button {
  height: 48px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.get-started__button:first-child {
  margin-top: 0;
  background-color: #64acff;
  color: #fff;
  border: 2px solid #64acff;
}

.get-started__button:first-child:hover {
  background-color: #4b96e6;
  border-color: #4b96e6;
}

/* White Border Button */
.get-started__button.now-button_white-border {
  background-color: transparent;
  color: #64acff;
  border: 2px solid #64acff;
}

.get-started__button.now-button_white-border:hover {
  background-color: #f8fcff;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .get-started {
    padding: 60px 0;
  }

  .get-started__box {
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 40px;
  }

  /* Background Image Decoration */
  .get-started__box::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -6px;
    right: -7px;
    bottom: 0;
    display: block;
    width: 100%;
    height: calc(100% + 9px);
    background-image: url("/images/get-started-image.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    pointer-events: none;
  }

  .get-started__title {
    position: relative;
    z-index: 1;
    padding: 8px 16px;
    font-size: 44px;
    line-height: 54px;
  }

  .get-started__text {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    font-size: 20px;
    line-height: 28px;
  }

  .get-started__links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
  }

  .get-started__button {
    min-width: 200px;
    margin-top: 0;
    margin-left: 16px;
  }

  .get-started__button:first-child {
    margin-left: 0;
  }
}















/* =========================
   Footer Base
========================= */
.footer {
  padding: 40px 0;
  background-color: #1b1e22;
  color: #fff;
}

.footer__logo {
  display: inline-block;
}

.footer__logo img {
  display: block;
}

.footer__company-text {
  margin-top: 24px;
  margin-bottom: 40px;
}

.footer__company-text p {
  margin: 8px 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #d8d8d8;
  text-align: left;
}

.footer__section {
  margin: 0 -16px;
}

.footer__section-first {
  margin-top: 16px;
  border-top: 1px solid #2f2f2f;
}

/* Mobile Accordion Menu */
.footer__menu {
  will-change: background;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color ease-in-out 0.5s;
}

.footer-menu_active {
  background-color: #020203;
}

.footer-menu_active .footer__menu-title:after {
  transform: rotate(180deg);
}

.footer-menu_active .footer__menu-list {
  max-height: 2000px;
}

.footer__menu-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 32px);
  height: 54px;
  margin: 0 16px;
  border-bottom: 1px solid #2f2f2f;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
}

.footer__menu-title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background-image: url("/images/submenu-arrow-icon.svg"); /* Ensure this SVG exists */
  background-repeat: no-repeat;
  background-position: center;
  transition: transform ease-in-out 0.5s;
}

.footer__menu-list {
  overflow: hidden;
  max-height: 0;
  margin: 0 16px;
  padding: 0;
  list-style-type: none;
  transition: max-height ease-in-out 0.5s;
}

.footer__menu-item {
  border-bottom: 1px solid #2f2f2f;
}

.footer__menu-link {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}

.footer__menu-link_current-page {
  pointer-events: none;
  cursor: default;
  color: #7e7e7e;
}

/* Social Section */
.footer__social {
  margin-top: 24px;
  padding: 0 16px;
}

.footer__trustpilot-widget-wrapper {
  min-width: 250px;
  min-height: 24px;
  margin-bottom: 16px;
  margin-left: -12px;
}

.footer__trustpilot-widget-wrapper a {
  color: #1b1e22;
}

.footer__social-title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.social {
  display: flex;
  gap: 16px;
}

.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
}

.footer__copyright p:last-child {
  color: #a4a4a4;
}

.footer__copyright_span-blue {
  color: #64acff;
}

.footer__copyright_span-green {
  color: #00c26f;
}

/* =========================
   Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .footer {
    padding: 80px 0;
    background-color: #1b1e22;
  }

  .footer__logo img {
    width: 248px;
    height: auto;
  }

  /* Grid Layout for Footer Sections */
  .footer__section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-right: 0;
    margin-left: 0;
  }

  .footer__section-first {
    grid-template-areas: 
      "first second third fourth sixth" 
      "first second third fifth seventh";
    grid-template-rows: auto auto;
    padding-top: 24px;
    border-top: 1px solid #2f2f2f;
  }

  /* Assign Grid Areas */
  .footer__section-first .footer__menu:nth-child(1) { grid-area: first; }
  .footer__section-first .footer__menu:nth-child(2) { grid-area: second; }
  .footer__section-first .footer__menu:nth-child(3) { grid-area: third; }
  .footer__section-first .footer__menu:nth-child(4) { grid-area: fourth; }
  .footer__section-first .footer__menu:nth-child(5) { 
    grid-area: fifth; 
    margin-top: 40px; 
  }
  .footer__section-first .footer__menu:nth-child(6) { grid-area: sixth; }
  .footer__section-first .footer__menu:nth-child(7) { 
    grid-area: seventh; 
    margin-top: 40px; 
  }

  /* Second Section Grid */
  .footer__section-second {
    grid-template-areas: "eighth eighth ninth _ social";
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #2f2f2f;
  }

  .footer__section-second .footer__menu:nth-child(1) { grid-area: eighth; }
  .footer__section-second .footer__menu:nth-child(2) { grid-area: ninth; }
  .footer__section-second .footer__social:nth-child(3) { grid-area: social; }

  /* Currencies List (Multi-column) */
  .footer__section-second .footer__menu:nth-child(1) .footer__menu-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 290px; /* Forces wrapping */
  }

  .footer__section-second .footer__menu:nth-child(1) .footer__menu-list li {
    margin-top: 0;
    margin-bottom: 12px;
    margin-right: 20px;
  }

  /* Reset Mobile Styles */
  .footer-menu_active {
    background-color: transparent;
  }

  .footer-menu_active .footer__menu-list {
    max-height: 100%;
  }

  .footer__menu-title {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    cursor: default;
  }

  .footer__menu-title:after {
    display: none;
  }

  .footer__menu-list {
    overflow: visible;
    max-height: 100%;
    margin: 0;
    transition: none;
  }

  .footer__menu-item {
    margin-top: 12px;
    border: 0;
  }

  .footer__menu-item:first-child {
    margin-top: 0;
  }

  .footer__menu-link {
    display: inline-flex;
    justify-content: flex-start;
    height: auto;
    padding: 0;
    font-weight: 300;
    color: #d8d8d8;
    transition: color 0.3s ease;
  }

  .footer__menu-link:hover {
    color: #64acff;
  }

  /* Social Section Desktop */
  .footer__social {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding: 0;
  }

  .footer__social-title {
    font-size: 16px;
    font-weight: 700;
  }

  .footer__copyright {
    display: block;
    margin-top: auto;
  }

  .footer__company-text {
    margin-top: 40px;
  }
}



.slick-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}



