
/* =========================
   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;
  }
}





































/* =========================
   Main Layout
========================= */
.main-new {
  padding-top: 80px; /* Offset for fixed header */
}

.section {
  padding: 64px 0;
}



/* =========================
   Hero Section
========================= */
.main-screen-new {
  position: relative;
  /* padding: 58px 0 36px; */
  overflow: hidden;
}

.main-screen-new__backgrounds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
}

.main-screen-new__background_static {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 120%);
  opacity: 0.6;
}

.main-screen-new__background_left {
  position: absolute;
  left: 0;
  top: 40px;
  width: 220px;
  opacity: 0.7;
}

.main-screen-new__background_right {
  position: absolute;
  right: 0;
  top: 20px;
  width: 280px;
  opacity: 0.7;
}

.main-screen-new__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.main-screen-new__title {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 680px;
  font-weight: 900;
}

.main-screen-new__description {
  margin: 14px auto 22px;
  max-width: 720px;
  color: rgba(233, 237, 243, 0.85);
  font-size: 16px;
}

.main-screen-new__button {
  margin: 0 auto;
}

.main-screen-new__links-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  opacity: 0.9;
}

.main-screen-new__link-top {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  transition: background var(--transition-fast);
}

.main-screen-new__link-top:hover {
  background: rgba(255, 255, 255, 0.07);
}

.main-screen-new__image-mobile {
  position: relative;
  z-index: 1;
  margin: 28px auto 0;
  width: min(420px, 92%);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.main-screen-new__images-desktop {
  display: none;
}

.main-screen-new__links-bottom {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  opacity: 0.9;
}

/* Desktop hero */
@media (min-width: 992px) {
  /* .main-screen-new {
    padding: 86px 0 56px;
  } */
  
  .main-screen-new__title {
    font-size: 56px;
  }
  
  .main-screen-new__description {
    font-size: 18px;
  }
  
  .main-screen-new__image-mobile {
    display: none;
  }
  
  .main-screen-new__images-desktop {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 18px;
  }
  
  .main-screen-new__mockup_desktop {
    margin: 0 auto;
    width: min(1060px, 95%);
    filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.5));
  }
  
  .main-screen-new__mockup_mobile {
    position: absolute;
    right: 10%;
    bottom: -18px;
    width: min(420px, 36%);
    filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.5));
  }
}


.main-screen-new {
  position: relative;
  overflow: hidden;
  width: 100%; /* ADD THIS */
}

.main-screen-new__images-desktop {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 18px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.main-screen-new__mockup_desktop {
  display: block;
  margin: 0 auto;
  width: min(1060px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.5));
}


/* Mobile - hide desktop mockups */
.main-screen-new__images-desktop {
  display: none;
}

.main-screen-new__image-mobile {
  position: relative;
  z-index: 1;
  display: block;
  margin: 28px auto 0;
  width: min(420px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.main-screen-new__links-top {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.main-screen-new__links-bottom {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  opacity: 0.9;
}

.main-screen-new__trustpilot-wrapper {
  position: static;
  transform: none;
}

/* Desktop hero (992px and up) */
@media (min-width: 992px) {
  .main-screen-new__title {
    font-size: 56px;
  }
  
  .main-screen-new__description {
    font-size: 18px;
  }
  
  /* Hide mobile image */
  .main-screen-new__image-mobile {
    display: none;
  }
  
  /* Show desktop mockups container */
  .main-screen-new__images-desktop {
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
    max-width: 1510px;
    height: 492px;
    padding-left: 130px;
    margin: 0 auto;
    z-index: 1;
  }
  
  /* Base mockup styles */
  .main-screen-new__mockup {
    object-fit: cover;
    object-position: center;
  }
  
  /* Desktop mockup */
  .main-screen-new__mockup_desktop {
    width: 1077px;
    height: 488px;
    filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.5));
    transform: translateY(-20px);
  }
  
  /* Mobile mockup - overlapping */
  .main-screen-new__mockup_mobile {
    position: relative;
    top: -70px;
    right: 119px;
    width: 542px;
    height: 454px;
    filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.5));
    transform: translateY(20px);
  }
}

/* Responsive adjustments for smaller desktops */
@media (min-width: 992px) and (max-width: 1400px) {
  .main-screen-new__images-desktop {
    max-width: 1200px;
    padding-left: 80px;
    height: auto;
  }
  
  .main-screen-new__mockup_desktop {
    width: min(900px, 100%);
    height: auto;
  }
  
  .main-screen-new__mockup_mobile {
    width: min(450px, 40%);
    height: auto;
    right: 80px;
  }
}

/* For very large screens */
@media (min-width: 1600px) {
  .main-screen-new__images-desktop {
    max-width: 1600px;
    padding-left: 150px;
  }
}
























/* =========================
   TRUSTED BY SECTION
========================= */
.trusted-by {
  padding: 60px 0;
  overflow: hidden;
}

.trusted-by .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.trusted-by__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.trusted-by__title-main {
  margin-right: 8px;
  padding: 0 8px;
  border-radius: 4px;
  background-color: #daff7c;
  color: #000;
}

.trusted-by__title-sub {
  font-size: 32px;
  font-weight: 600;
}

/* Carousel Container */
.trusted-by__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

/* Track - holds all slides */
.trusted-by__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

/* Pause animation on hover */
.trusted-by__carousel:hover .trusted-by__track {
  animation-play-state: paused;
}

/* Individual Slide */
.trusted-by__slide {
  flex-shrink: 0;
}

/* Link */
.trusted-by__link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.trusted-by__link:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Logo Image */
.trusted-by__logo {
  width: auto;
  height: 40px;
  max-width: 150px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  transition: all 0.3s ease;
}

.trusted-by__link:hover .trusted-by__logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(100, 172, 255, 0.5));
}

/* =========================
   INFINITE SCROLL ANIMATION
========================= */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 768px) {
  .trusted-by {
    padding: 40px 0;
  }

  .trusted-by__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .trusted-by__title-sub {
    font-size: 18px;
  }

  .trusted-by__track {
    gap: 40px;
    animation-duration: 20s;
  }

  .trusted-by__logo {
    height: 30px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .trusted-by__title {
    font-size: 20px;
  }

  .trusted-by__title-sub {
    font-size: 16px;
  }

  .trusted-by__track {
    gap: 30px;
    animation-duration: 15s;
  }

  .trusted-by__logo {
    height: 25px;
    max-width: 100px;
  }
}


























/* =========================
   INVOICE EXAMPLE SECTION
========================= */
.landing-invoice-example {
  padding: 72px 0;
}

/* Main container - grid layout */
.landing-invoice-example__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* =========================
   LEFT INFO PANEL
========================= */
.landing-invoice-example__info {
  display: flex;
  flex-direction: column;
}

.landing-invoice-example__title {
  max-width: 425px;
  margin-bottom: 4px;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  color: #fff;
}

.landing-invoice-example__description {
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  color: var(--muted);
  margin-bottom: 24px;
}

.landing-invoice-example__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.landing-invoice-example__list-item {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(233, 237, 243, 0.9);
}

.landing-invoice-example__list-item:not(:last-child) {
  margin-bottom: 16px;
}

/* Base icon styles */
.landing-invoice-example__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Custom icons for each list item */
.landing-invoice-example__list-item:nth-child(1)::before {
  background-image: url("/images/landings/icons/marker-icons/coins.svg");
}

.landing-invoice-example__list-item:nth-child(2)::before {
  background-image: url("/images/landings/icons/marker-icons/increase.svg");
}

.landing-invoice-example__list-item:nth-child(3)::before {
  background-image: url("/images/landings/icons/marker-icons/hexagon-cube.svg");
}

.landing-invoice-example__list-item:nth-child(4)::before {
  background-image: url("/images/landings/icons/marker-icons/card.svg");
}

.landing-invoice-example__list-item:nth-child(5)::before {
  background-image: url("/images/landings/icons/marker-icons/conversions.svg");
}

.landing-invoice-example__list-item:nth-child(6)::before {
  background-image: url("/images/landings/icons/marker-icons/chat.svg");
}

/* Buttons */
.landing-invoice-example__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0;
}

.landing-invoice-example__button {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-contact-us-button {
  background: var(--brand);
  color: #0b0f14;
}

.modal-contact-us-button:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(100, 172, 255, 0.25);
}

/* Outlined button with blue text */
.now-button_black-border {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.now-button_blue-text {
  color: var(--brand);
}

.now-button_black-border:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(100, 172, 255, 0.4);
}

/* =========================
   RIGHT DEMO PANEL
========================= */
.landing-invoice-example__demo-container {
  position: relative;
}

/* Demo wrapper */
.landing-invoice-example__demo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 378px;
  border: 3px solid #64acff;
  border-radius: 8px;
  background-color: #fff;
}

.landing-invoice-example__demo::-webkit-scrollbar {
  width: 4px;
}

.landing-invoice-example__demo::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #e5e5e5;
}

.landing-invoice-example__demo::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #64acff;
}

/* Background Picture - hidden on mobile */
.landing-invoice-example__picture {
  display: none;
}

/* Notice */
.landing-invoice-example__notice {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #a4a4a4;
  text-align: center;
}

.landing-invoice-example__notice span {
  color: #fff;
}

/* =========================
   INVOICE WIDGET CONTENT
========================= */
.invoice-demo_new-theme {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.company-info__name {
  font-size: 18px;
  font-weight: 700;
  color: #13171c;
}

.company-info__description {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

/* Tabs */
.switchers-with-timer {
  margin-top: 20px;
}

.invoice-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.invoice-tab {
  background: none;
  border: none;
  color: #9ca3af;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.invoice-tab_active {
  color: #13171c;
  background: #f3f4f6;
}

.invoice-tab[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Currency Selector */
.currency-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-selected:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.currency-selected__coin {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-selected__coin-ticker {
  font-weight: 700;
  font-size: 16px;
  color: #13171c;
  display: flex;
  align-items: center;
  gap: 6px;
}

.currency-sup {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #ee3932;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Payment Info */
.payment-info-item {
  margin-top: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.payment-info-item__header-title {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 8px;
}

.choose-currency-step__info-item {
  font-size: 24px;
  font-weight: 800;
  color: #13171c;
  letter-spacing: -0.5px;
}

.payment-info-item__text-bottom {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
  font-weight: 500;
}

/* Next Step Button */
.choose-currency-step__button {
  width: 100%;
  margin-top: 20px;
  height: 48px;
  background: #64acff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.choose-currency-step__button:hover {
  background: #4d9aff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(100, 172, 255, 0.3);
}

/* =========================
   RESPONSIVE - TABLET (992px+)
========================= */
@media screen and (min-width: 992px) {
  /* Two column layout */
  .landing-invoice-example__container {
    grid-template-columns: 1fr 550px;
    gap: 40px;
    align-items: center;
  }

  .landing-invoice-example__description {
    max-width: 450px;
    margin-bottom: 32px;
  }

  .landing-invoice-example__button {
    width: auto;
    padding: 0 24px;
    height: 52px;
    text-align: center;
  }

  .landing-invoice-example__list-item {
    font-size: 20px;
    line-height: 28px;
  }

  .landing-invoice-example__demo-container {
    position: relative;
    width: 550px;
    min-height: 500px;
    padding: 65px;
    box-sizing: border-box;
  }

  .landing-invoice-example__demo-container::after {
    content: "";
    position: absolute;
    bottom: 92px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 53%;
    height: 37px;
    background-image: url("/images/invoices/shadow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }

  .landing-invoice-example__demo {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: hidden;
    overflow-y: auto;
    align-items: flex-start;
    width: 280px;
    height: 360px;
    min-height: unset;
    margin: 0 auto;
    border: none;
    border-radius: unset;
    background-color: unset;
  }

  .landing-invoice-example__picture {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 413px;
  }

  .landing-invoice-example__picture img {
    width: 100%;
    height: auto;
  }

  .landing-invoice-example__notice {
    margin-top: 8px;
    position: relative;
    z-index: 10;
  }

  /* Main-new specific for 992px */
  .landing-invoice-example_main-new .landing-invoice-example__demo {
    top: 170px;
    width: 300px;
    height: 430px;
  }

  .landing-invoice-example_main-new .landing-invoice-example__demo-container::after {
    bottom: 95px;
    width: 333px;
  }
}

/* =========================
   RESPONSIVE - DESKTOP (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .landing-invoice-example_main-new {
    padding: 120px 0;
  }

  .landing-invoice-example__container {
    grid-template-columns: 1fr 650px;
    gap: 60px;
  }

  .landing-invoice-example__info {
    min-width: 588px;
    margin-top: -30px;
  }

  .landing-invoice-example__title {
    max-width: 525px;
    font-size: 50px;
    line-height: 64px;
  }

  .landing-invoice-example__description {
    max-width: none;
  }

  .landing-invoice-example__demo-container {
    width: 650px;
    min-height: 580px;
    padding: 65px;
  }

  .landing-invoice-example__demo-container::after {
    bottom: 98px;
    width: 350px;
  }

  .landing-invoice-example__demo {
    top: 155px;
    width: 320px;
    height: 470px;
  }

  .landing-invoice-example__picture {
    width: 100%;
    min-height: 577px;
  }

  /* Main-new specific for 1200px */
  .landing-invoice-example_main-new .landing-invoice-example__demo {
    top: 188px;
    width: 355px;
    height: 450px;
  }

  .landing-invoice-example_main-new .landing-invoice-example__demo-container::after {
    bottom: 95px;
    width: 378px;
  }
}

/* =========================
   RESPONSIVE - LARGE DESKTOP (1400px+)
========================= */
@media screen and (min-width: 1400px) {
  .landing-invoice-example__container {
    grid-template-columns: 1fr 741px;
    gap: 80px;
  }

  .landing-invoice-example__demo-container {
    width: 741px;
    min-height: 600px;
    padding: 65px;
  }

  .landing-invoice-example__demo-container::after {
    bottom: 98px;
    width: 400px;
  }

  .landing-invoice-example__demo {
    top: 165px;
    width: 355px;
    height: 480px;
  }

  .landing-invoice-example__picture {
    width: 100%;
    min-height: 577px;
  }
}






















/* =========================
   Banner Figures
========================= */
.landing-banner {
  position: relative;
  padding: 64px 0;
  overflow: visible;
}

/* Override container overflow if needed */
.landing-banner .container {
  overflow: visible;
}

.landing-banner__container {
  position: relative;
  z-index: 1;
  overflow: visible;
  border-radius: 24px;
  padding: 48px 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(100, 172, 255, 0.18), transparent 60%),
    radial-gradient(600px 240px at 80% 10%, rgba(218, 255, 124, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft); */
}

.landing-banner__background {
  position: absolute;
  /* FASTER ANIMATION - changed from 0.1s to 0.05s */
  transition: transform 0.05s ease-out;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform;
  z-index: -1;
}

/* Mobile - Stars positioned further outside */
.landing-banner__background_left {
  bottom: 50%;
  transform: translateY(50%);
  left: -100px;
  width: 120px;
  height: 138px;
}

.landing-banner__background_right {
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  width: 130px;
  height: 140px;
}

.landing-banner__title {
  max-width: 240px;
  margin: 0 auto 48px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

.landing-banner__figures {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.landing-banner__figure {
  text-align: center;
}

.landing-banner__text {
  margin-bottom: 10px;
  font-size: 46px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.landing-banner__text_green {
  color: #daff7c;
}

.landing-banner__text_red {
  color: #ffa3bb;
}

.landing-banner__text_blue {
  color: #64acff;
}

.landing-banner__text_mobile {
  display: block;
}

.landing-banner__text_desktop {
  display: none;
}

.landing-banner__description {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  text-align: center;
}

.landing-banner__buttons {
  display: none;
}

/* Small Tablet */
@media screen and (min-width: 576px) {
  .landing-banner__background_left {
    left: -130px;
    width: 150px;
    height: 165px;
  }

  .landing-banner__background_right {
    right: -130px;
    width: 160px;
    height: 175px;
  }
}

/* Tablet and up */
@media screen and (min-width: 992px) {
  .landing-banner {
    padding: 100px 0;
  }

  .landing-banner__container {
    padding: 60px 48px;
  }

  .landing-banner__title {
    max-width: none;
    margin-bottom: 60px;
  }

  .landing-banner__text_mobile {
    display: none;
  }

  .landing-banner__text_desktop {
    display: block;
  }

  .landing-banner__figures {
    flex-direction: row;
    gap: 48px;
    justify-content: center;
  }

  /* Stars pushed further out on tablet */
  .landing-banner__background_left {
    bottom: -100px;
    left: -180px;
    transform: none;
    width: 220px;
    height: 240px;
  }

  .landing-banner__background_right {
    top: -100px;
    right: -180px;
    transform: none;
    width: 200px;
    height: 220px;
  }

  .landing-banner__buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
  }
}

/* Desktop */
@media screen and (min-width: 1200px) {
  .landing-banner__container {
    padding: 80px 64px;
  }

  /* Stars pushed even further out on desktop */
  .landing-banner__background_left {
    bottom: -150px;
    left: -250px;
    width: 320px;
    height: 350px;
  }

  .landing-banner__background_right {
    top: -140px;
    right: -250px;
    width: 300px;
    height: 330px;
  }

  .landing-banner__title {
    font-size: 56px;
    line-height: 64px;
  }

  .landing-banner__text {
    font-size: 56px;
    line-height: 64px;
  }

  .landing-banner__description {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  }
}

/* Large Desktop */
@media screen and (min-width: 1400px) {
  /* Stars pushed maximum distance on large screens */
  .landing-banner__background_left {
    bottom: -180px;
    left: -320px;
    width: 400px;
    height: 430px;
  }

  .landing-banner__background_right {
    top: -170px;
    right: -320px;
    width: 380px;
    height: 410px;
  }
}

/* Extra Large Desktop */
@media screen and (min-width: 1600px) {
  .landing-banner__background_left {
    bottom: -200px;
    left: -400px;
    width: 450px;
    height: 480px;
  }

  .landing-banner__background_right {
    top: -190px;
    right: -400px;
    width: 420px;
    height: 450px;
  }
}





















/* =========================
   Best Suited Section
========================= */
.alternative-best-suited {
  padding: 64px 0;
}

.alternative-best-suited_dark {
  background-color: #1b1e22;
}

.alternative-best-suited__box {
  max-width: 100%;
}

.alternative-best-suited__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-align: left;
}

.alternative-best-suited__title span {
  display: inline-block;
  padding: 0 8px;
  border-radius: 4px;
  color: #13171c;
  background-color: #ffa3bb;
}

/* Cards Grid */
.alternative-best-suited__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.alternative-best-suited__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 184px;
  padding: 16px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
}

/* Inner background layer */
.alternative-best-suited__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #242b35;
  border-radius: 8px;
  z-index: -1;
}

.alternative-best-suited__card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
}

.alternative-best-suited__card span {
  position: relative;
  z-index: 1;
}

/* Tags Scroll Container */
.alternative-best-suited__content {
  overflow-x: auto;
  margin: 18px -16px 0;
  padding: 6px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.alternative-best-suited__content::-webkit-scrollbar {
  display: none;
}

.alternative-best-suited__list {
  display: flex;
  gap: 16px;
}

.alternative-best-suited__tag {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #242b35;
}

/* Inner background layer for tags */
.alternative-best-suited__tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #242b35;
  border-radius: 8px;
  z-index: -1;
}

.alternative-best-suited__tag span {
  position: relative;
  z-index: 1;
}

/* Contact Button Container */
.alternative-best-suited__contactus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Contact Button - COMPLETELY NO HOVER EFFECT */
.alternative-best-suited__contact-button {
  position: relative;
  width: auto;
  min-height: 64px;
  padding: 16px 12px;
  border: none !important;
  border-radius: 0 !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #fff !important;
  text-align: center;
  background: transparent !important;
  background-color: transparent !important;
  background-image: url("/images/best-suited/circle.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  transition: none !important;
}

.alternative-best-suited__contact-button:hover,
.alternative-best-suited__contact-button:focus,
.alternative-best-suited__contact-button:active,
.alternative-best-suited__contact-button:visited {
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: url("/images/best-suited/circle.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  box-shadow: none !important;
  outline: none !important;
  color: #fff !important;
  transform: none !important;
}

.alternative-best-suited__contact-button::before,
.alternative-best-suited__contact-button::after,
.alternative-best-suited__contact-button:hover::before,
.alternative-best-suited__contact-button:hover::after,
.alternative-best-suited__contact-button:focus::before,
.alternative-best-suited__contact-button:focus::after {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

/* =========================
   Tablet (768px+)
========================= */
@media screen and (min-width: 768px) {
  .alternative-best-suited__box {
    max-width: 100%;
  }

  .alternative-best-suited__cards {
    gap: 20px;
  }

  .alternative-best-suited__list {
    gap: 20px;
  }
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .alternative-best-suited {
    padding: 120px 0;
  }

  .alternative-best-suited__title,
  .alternative-best-suited__content {
    position: relative;
    z-index: 1;
  }

  .alternative-best-suited__title {
    font-weight: 600;
    text-align: center;
  }

  .alternative-best-suited__content {
    margin: 24px 0 0;
    padding: 6px 0;
    overflow-x: visible;
  }

  .alternative-best-suited__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Animated border effect for cards */
  .alternative-best-suited_dark .alternative-best-suited__card::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: -2px;
    left: -2px;
    display: block;
    width: calc(100% + 4px);
    height: 0;
    border-radius: 8px;
    background-color: #daff7c;
    transition: height 0.5s ease;
  }

  .alternative-best-suited_dark .alternative-best-suited__card:hover::after {
    height: calc(100% + 4px);
  }

  /* Animated border effect for tags ONLY */
  .alternative-best-suited_dark .alternative-best-suited__tag::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: -2px;
    left: -2px;
    display: block;
    width: calc(100% + 4px);
    height: 0;
    border-radius: 8px;
    background-color: #daff7c;
    transition: height 0.5s ease;
  }

  .alternative-best-suited_dark .alternative-best-suited__tag:hover::after {
    height: calc(100% + 4px);
  }

  .alternative-best-suited__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* =========================
   Large Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .alternative-best-suited__box {
    max-width: 1232px;
    margin: 0 auto;
  }

  .alternative-best-suited__title {
    font-size: 48px;
    line-height: 56px;
  }

  .alternative-best-suited__title span {
    padding: 0 12px;
    border-radius: 6px;
  }

  .alternative-best-suited__card {
    min-height: 200px;
    padding: 24px;
    font-size: 24px;
    line-height: 32px;
  }

  .alternative-best-suited__card img {
    width: 90px;
    height: 90px;
    margin-bottom: 16px;
  }

  .alternative-best-suited__tag {
    min-height: 64px;
    padding: 16px 28px;
    font-size: 20px;
    line-height: 28px;
  }
}
















/* =========================
   Solutions Bubbles
========================= */
.main-new-solutions {
  padding: 60px 0;
  background-color: #1b1e22;
}

.main-new-solutions__container {
  text-align: center;
}

.main-new-solutions__title {
  color: #fff;
}

.main-new-solutions__title_first {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.main-new-solutions__title_second {
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.main-new-solutions__description {
  margin-bottom: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.main-new-solutions__bubbles {
  min-height: 460px;
}

.main-new-solutions__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

/* Bubbles Container */
.main-new-bubbles {
  padding: 40px 16px;
  background-color: #242b35;
}

.main-new-bubbles__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-new-solutions__background_left {
  display: none;
}

.main-new-bubbles__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Bubble Base Styles */
.main-new-bubble {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 10px 12px;
  border: 2px solid;
  border-radius: 40px;
  text-decoration: none;
  box-sizing: border-box;
}

.main-new-bubble_link {
  font-weight: 500;
  text-align: center;
  line-height: 16px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.main-new-bubble_link:hover {
  opacity: 0.8;
}

.main-new-bubble_empty {
  flex-grow: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.main-new-bubble__arrow {
  transition: transform 0.3s ease;
}

.main-new-bubble__arrow_end {
  align-self: flex-end;
}

.main-new-bubble__arrow_start {
  align-self: flex-start;
}

/* Pink Filled */
.main-new-bubble_pink-filled {
  background-color: #ffa3bb;
  border-color: #ffa3bb;
  color: #13171c;
}

/* Pink Border Only */
.main-new-bubble_pink-border {
  background-color: transparent;
  border-color: #ffa3bb;
  color: #fff;
}

/* Green/Lime Filled */
.main-new-bubble_green-filled {
  background-color: #daff7c;
  border-color: #daff7c;
  color: #13171c;
}

/* Green/Lime Border Only */
.main-new-bubble_green-border {
  background-color: transparent;
  border-color: #daff7c;
  color: #daff7c;
}

/* Blue Filled */
.main-new-bubble_blue-filled {
  background-color: #64acff;
  border-color: #64acff;
  color: #fff;
}

/* Blue Border Only */
.main-new-bubble_blue-border {
  background-color: transparent;
  border-color: #64acff;
  color: #64acff;
}

/* =========================
   Tablet (768px+)
========================= */
@media screen and (min-width: 768px) {
  .main-new-bubbles__row {
    flex-wrap: nowrap;
  }
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .main-new-solutions {
    padding: 120px 0;
  }

  .main-new-solutions__title_first {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
  }

  .main-new-solutions__title_second {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
  }

  .main-new-solutions__description {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 28px;
  }

  .main-new-solutions__buttons {
    flex-direction: row;
    margin-top: 40px;
  }

  .main-new-solutions__bubbles {
    min-height: 288px;
  }

  .main-new-bubbles {
    display: flex;
    justify-content: center;
    padding: 56px 8px;
  }

  .main-new-bubbles__container {
    width: 100%;
    max-width: 1200px;
  }

  .main-new-bubbles__row {
    gap: 16px;
  }

  .main-new-bubble {
    height: 48px;
  }

  .main-new-bubble_link {
    flex-shrink: 0;
    font-weight: 400;
  }

  .main-new-bubble_empty {
    padding: 10px 12px;
    min-width: 48px;
  }
}

/* =========================
   Large Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .main-new-solutions__background_left {
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    transform: translateY(calc(-50% - 15px));
    display: block;
  }

  .main-new-bubble {
    padding: 10px 24px;
  }

  .main-new-bubble_link {
    font-size: 20px;
    line-height: 28px;
  }

  .main-new-bubble_empty {
    padding: 10px 12px;
  }
}






















/* =========================
   Stats Section
========================= */
.landing-main-stat {
  padding: 60px 0;
  background-color: #1b1e22;
}

.landing-main-stat__container {
  position: relative;
}

.landing-main-stat__title {
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
}

.landing-main-stat__description {
  margin-bottom: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

/* Diagram */
.landing-main-stat__diagram {
  padding-right: 15px;
}

.landing-main-stat__diagram-title {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 16px;
  color: #daff7c;
}

.landing-main-stat__diagram-image {
  display: block;
  width: 100%;
}

.landing-main-stat__diagram-image img {
  width: 100%;
  height: auto;
}

/* Axis Labels */
.landing-main-stat__axis-labels {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.landing-main-stat__axis-label {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 20%;
  height: 22px;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
}

.landing-main-stat__axis-label::before {
  content: "";
  width: 1px;
  height: 8px;
  background-color: #2a3a4e;
}

.landing-main-stat__axis-label:last-child {
  position: absolute;
  right: 0;
  align-items: flex-end;
  text-align: right;
}

.landing-main-stat__axis-label:not(:last-child) > p {
  transform: translateX(-50%);
  text-align: center;
}

.landing-main-stat__axis-label:last-child > p {
  transform: translateX(20px);
}

/* Text Stats */
.landing-main-stat__texts {
  margin-top: 24px;
  padding-left: 24px;
  list-style: none;
}

.landing-main-stat__text {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.landing-main-stat__text::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -24px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("images/landings/icons/marker-icons/star-blue.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.landing-main-stat__text:not(:last-child) {
  margin-bottom: 24px;
}

.landing-main-stat__text > span {
  font-weight: 700;
  color: #daff7c;
}

/* Button */
.landing-main-stat__button {
  margin-top: 40px;
}

/* =========================
   Small Tablet (576px+)
========================= */
@media screen and (min-width: 576px) {
  .landing-main-stat__diagram {
    width: 551px;
    margin: 0 auto;
  }
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .landing-main-stat {
    padding: 120px 0;
  }

  .landing-main-stat__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
  }

  .landing-main-stat__description {
    max-width: 1000px;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 28px;
  }

  .landing-main-stat__diagram-title {
    line-height: 20px;
  }

  .landing-main-stat__content {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 32px 24px;
    border-radius: 12px;
    background-color: #242b35;
  }

  .landing-main-stat__diagram {
    width: 551px;
    flex-shrink: 0;
    margin: 0;
  }

  .landing-main-stat__texts {
    width: calc(100% - 575px);
    margin-top: 0;
  }

  .landing-main-stat__text {
    font-size: 20px;
    line-height: 28px;
  }

  .landing-main-stat__axis-label {
    height: 32px;
    font-size: 14px;
    line-height: 20px;
  }

  .landing-main-stat__button {
    margin-top: 24px;
  }
}

/* =========================
   Large Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .landing-main-stat {
    overflow-x: hidden;
  }

  .landing-main-stat__container {
    position: relative;
  }

  .landing-main-stat__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 59px;
    right: -104px;
    width: 481px;
    height: 441px;
    background-image: url("/images/main-new/diagram-coins-back.svg");
    background-repeat: no-repeat;
    background-size: 481px 441px;
    pointer-events: none;
  }

  .landing-main-stat__container::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -102px;
    width: 305px;
    height: 240px;
    background-image: url("/images/main-new/diagram-coins-front.svg");
    background-repeat: no-repeat;
    background-size: 305px 240px;
    pointer-events: none;
  }

  .landing-main-stat__content {
    position: relative;
    z-index: 2;
  }
}



















/* =========================
   Wallet Logos
========================= */
.main-new-wallet {
  position: relative;
  overflow-x: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background-color: #1b1e22;
}

.main-new-wallet__container {
  position: relative;
  z-index: 1;
  overflow-y: visible;
}

.main-new-wallet__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
  text-align: center;
}

.main-new-wallet__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-new-wallet__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 8px;
  background-color: #242b35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-new-wallet__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-new-wallet__card img {
  max-width: 80%;
  max-height: 50px;
  object-fit: contain;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .main-new-wallet {
    padding: 120px 0;
  }

  .main-new-wallet__title {
    margin-bottom: 40px;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
  }

  .main-new-wallet__cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .main-new-wallet__card {
    width: 210px;
    height: 82px;
  }

  .main-new-wallet__card img {
    max-height: 40px;
  }
}











/* =========================
   Commissions Section
========================= */
.landing-commissions {
  padding: 60px 0;
  background-color: #1b1e22;
}

.landing-commissions__container {
  position: relative;
  z-index: 1;
}

.landing-commissions__title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

.landing-commissions__title > span,
.landing-commissions__text > span,
.landing-commissions__explanation > span {
  color: #64acff;
}

.landing-commissions__value {
  display: flex;
  flex-direction: column;
  max-width: 235px;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #daff7c;
}

.landing-commissions__value::after {
  content: "";
  display: block;
  align-self: flex-end;
  width: 48px;
  height: 48px;
  margin-top: -8px;
  background-image: url("/images/decor/three-lines-blue-wide.svg");
  background-repeat: no-repeat;
  background-size: 48px 48px;
}

.landing-commissions__content {
  margin-top: 40px;
}

.landing-commissions__texts {
  margin-bottom: 0;
}

.landing-commissions__text {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-align: right;
}

.landing-commissions__text > span {
  font-weight: 700;
  color: #64acff;
}

.landing-commissions__explanation {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #a4a4a4;
  text-align: right;
}

.landing-commissions__stars {
  display: none;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .landing-commissions {
    position: relative;
    padding: 120px 0;
  }

  .landing-commissions__container {
    position: relative;
    z-index: 1;
  }

  .landing-commissions__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
  }

  .landing-commissions__value {
    max-width: unset;
    font-size: 104px;
    line-height: 120px;
  }

  .landing-commissions__value::after {
    display: none;
  }

  .landing-commissions__text,
  .landing-commissions__explanation {
    font-size: 20px;
    line-height: 28px;
  }

  .landing-commissions__stars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    max-width: 1440px;
    height: auto;
    pointer-events: none;
  }

  .landing-commissions__stars path {
    transition: fill-opacity 0.3s ease;
  }
}








/* =========================
   Security Section
========================= */
.main-new-security {
  padding: 60px 0;
  background-color: #1b1e22;
}

.main-new-security__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-new-security__title {
  width: 100%;
  margin-bottom: 4px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
}

.main-new-security__description {
  width: 100%;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.main-new-security__image {
  display: block;
  width: 100%;
  max-width: 551px;
}

.main-new-security__image img {
  width: 100%;
  height: auto;
}

.main-new-security__texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  color: #fff;
}

.main-new-security__text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .main-new-security {
    padding: 120px 0;
  }

  .main-new-security__title {
    font-size: 56px;
    line-height: 64px;
    text-align: center;
  }

  .main-new-security__description {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
  }

  .main-new-security__image {
    max-width: 100%;
  }

  .main-new-security__texts {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    font-size: 20px;
    line-height: 28px;
  }

  .main-new-security__text {
    font-size: 20px;
    line-height: 28px;
  }
}




















/* =========================
   Security Cards - Base
========================= */
.landing-alternative-text-cards {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #1b1e22;
}

.landing-alternative-text-cards__cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-alternative-text-cards__title {
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

.landing-alternative-text-cards__title span {
  display: none;
}

.landing-alternative-text-cards__card {
  position: relative;
  min-height: 240px;
  padding: 16px;
  border-radius: 12px;
}

.landing-alternative-text-cards__card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}

.landing-alternative-text-cards__card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

/* Card Color Variants */
.landing-alternative-text-cards__card_green {
  border: 1px solid #daff7c;
}

.landing-alternative-text-cards__card_blue {
  border: 1px solid #64acff;
}

.landing-alternative-text-cards__card_pink {
  border: 1px solid #ffa3bb;
}

.landing-alternative-text-cards__card_green span {
  color: #daff7c;
}

.landing-alternative-text-cards__card_blue span {
  color: #64acff;
}

.landing-alternative-text-cards__card_pink span {
  color: #ffa3bb;
}

/* Card Images */
.landing-alternative-text-cards__picture {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.landing-alternative-text-cards__card img {
  display: block;
  width: 100%;
}

.landing-alternative-text-cards__card:nth-child(1) img {
  max-width: 110px;
}

.landing-alternative-text-cards__card:nth-child(2) img {
  max-width: 108px;
}

.landing-alternative-text-cards__card:nth-child(3) img {
  max-width: 157px;
}

/* Buttons */
.landing-alternative-text-cards__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  line-height: 28px;
}

.landing-alternative-text-cards__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* =========================
   Main New Variant
========================= */
.landing-alternative-text-cards_main-new {
  overflow: hidden;
  padding: 60px 0;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__title {
  margin-bottom: 24px;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__title span {
  display: none;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card {
  border-width: 2px;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(2) {
  position: relative;
  z-index: 2;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card > h3 {
  width: fit-content;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #13171c;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card_pink > h3 {
  background-color: #ffa3bb;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card_green > h3 {
  background-color: #daff7c;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card_blue > h3 {
  background-color: #64acff;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(1) {
  display: flex;
  flex-direction: column;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(1) .landing-alternative-text-cards__picture {
  justify-content: center;
  margin-top: auto;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card img {
  margin-right: 0;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(1) img {
  max-width: 300px;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(2) img {
  max-width: 113px;
  padding-top: 10px;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(3) img {
  max-width: 126px;
}

.landing-alternative-text-cards_main-new .landing-alternative-text-cards__links {
  margin-top: 24px;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .landing-alternative-text-cards {
    padding-top: 10px;
    padding-bottom: 60px;
  }

  .landing-alternative-text-cards__title {
    margin-bottom: 48px;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
  }

  .landing-alternative-text-cards__card h3 {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
  }

  .landing-alternative-text-cards__card p {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.2px;
  }

  /* 2 Column Grid Layout - Adjusted widths */
  .landing-alternative-text-cards__cards-container {
    display: grid;
    grid-template-columns: 42% 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  /* Pink card - full height (spans both rows) */
  .landing-alternative-text-cards__card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
  }

  /* Green card - top right (align to bottom) */
  .landing-alternative-text-cards__card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
  }

  /* Blue card - bottom right (align to bottom) */
  .landing-alternative-text-cards__card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
  }

  .landing-alternative-text-cards__card {
    min-height: auto;
    will-change: transform, opacity;
  }

  /* Card Shadows */
  .landing-alternative-text-cards__card_pink {
    box-shadow: -16px -16px 0 0 rgba(255, 163, 187, 0.3);
  }

  .landing-alternative-text-cards__card_green {
    box-shadow: -16px -16px 0 0 rgba(218, 255, 124, 0.3);
  }

  .landing-alternative-text-cards__card_blue {
    box-shadow: -16px -16px 0 0 rgba(100, 172, 255, 0.3);
  }

  .landing-alternative-text-cards__button {
    width: 240px;
  }

  .landing-alternative-text-cards__links {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }

  /* Main New Variant - Desktop */
  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__title {
    text-align: center;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(1) img {
    max-width: 350px;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(2) img {
    max-width: 130px;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(3) img {
    max-width: 140px;
  }

  /* Align images to bottom baseline */
  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(1) .landing-alternative-text-cards__picture {
    margin-top: auto;
    justify-content: center;
    align-items: flex-end;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(2) .landing-alternative-text-cards__picture,
  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(3) .landing-alternative-text-cards__picture {
    margin-top: auto;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 0;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(2) img,
  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(3) img {
    padding-top: 0;
  }
}

/* =========================
   Large Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .landing-alternative-text-cards__cards-container {
    min-height: 480px;
    grid-template-columns: 40% 1fr;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(1) img {
    max-width: 380px;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(2) img {
    max-width: 150px;
  }

  .landing-alternative-text-cards_main-new .landing-alternative-text-cards__card:nth-child(3) img {
    max-width: 160px;
  }

  /* Title Decoration */
  .landing-alternative-text-cards__title {
    position: relative;
  }

  .landing-alternative-text-cards__title span {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: inline-block;
    width: 128px;
    height: 80px;
    background-image: url("/images/crypto-subscriptions/convenience-title-decor.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
}

/* =========================
   Extra Large Desktop (1400px+)
========================= */
@media screen and (min-width: 1400px) {
  .landing-alternative-text-cards__cards-container {
    grid-template-columns: 38% 1fr;
  }
}
















/* =========================
   Coins Section
========================= */
.coins-section {
  min-height: 750px;
  background-color: #1b1e22;
}

.coins_new-theme {
  padding: 60px 0;
  background-color: #1b1e22;
}

.coins_new-theme h2 {
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.coins_new-theme .section__content {
  margin-top: 16px;
}

/* Mobile Title */
.coins__mobile-title {
  display: block;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

/* Desktop Header - Hidden on mobile */
.coins__desktop-header {
  display: none;
}

/* Slider Container */
.coins__slider-desktop {
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.coins__slider-desktop::-webkit-scrollbar {
  display: none;
}

.coins__slider-desktop-list {
  display: flex;
  gap: 16px;
  width: fit-content;
  padding-bottom: 8px;
}

/* Bottom Block */
.coins__bottom-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.coins__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  text-align: center;
}

.coins__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #64acff;
  text-decoration: none;
  border: 2px solid #64acff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.coins__link:hover {
  background-color: rgba(100, 172, 255, 0.1);
}

/* =========================
   Coin Card
========================= */
.coin-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 300px;
  height: 100%;
  min-height: 380px;
  padding: 16px;
  border: 2px solid #242b35;
  border-radius: 12px;
  color: #fff;
  background-color: transparent;
}

.coin-card__header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #242b35;
}

.coin-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.coin-card__title {
  display: flex;
  align-items: center;
}

.coin-card__title-logo {
  width: 48px;
  height: 48px;
}

.coin-card__title-name {
  margin: 0 8px 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.coin-card__title-ticker {
  font-size: 24px;
  line-height: 32px;
  color: #a4a4a4;
}

.coin-card__networks {
  margin-top: 12px;
}

.coin-card__networks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.coin-card__networks-text {
  font-size: 14px;
  line-height: 20px;
  color: #a4a4a4;
}

.coin-card__network {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  background-color: #242b35;
}

.coin-card__network img {
  width: 16px;
  height: 16px;
}

.coin-card__network p {
  margin: 0;
}

.coin-card__texts {
  padding-left: 24px;
  margin: 0;
  list-style: none;
}

.coin-card__text {
  position: relative;
  font-size: 14px;
  line-height: 20px;
}

.coin-card__text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -24px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("/images/landings/icons/marker-icons/star-blue.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.coin-card__text:not(:last-child) {
  margin-bottom: 8px;
}

.coin-card__learn-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  margin-left: auto;
  padding-right: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #daff7c;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.coin-card__learn-more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 8px;
  background-image: url("/images/icons/arrow-thin-yellow.svg");
  background-repeat: no-repeat;
  background-size: 12px 8px;
}

.coin-card__learn-more:hover {
  opacity: 0.8;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .coins_new-theme {
    padding: 120px 0;
  }

  .coins_new-theme .container {
    max-width: 100%;
  }

  /* Hide mobile title */
  .coins__mobile-title {
    display: none;
  }

  /* Show desktop header */
  .coins__desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 992px;
    margin: 0 auto 24px;
    padding: 0 16px;
  }

  .coins__desktop-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
  }

  .coins__desktop-buttons {
    display: flex;
    gap: 10px;
  }

  .coins__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .coins__button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }

  .coins__arrow {
    fill: none;
    transition: fill 0.3s ease;
  }

  .coins__button:not(:disabled):hover .coins__arrow {
    fill: rgba(218, 255, 124, 0.1);
  }

  .coins__button_inactive:hover .coins__arrow {
    fill: none;
  }

  /* Slider */
  .coins__slider-desktop {
    overflow-x: auto;
    margin: 0 -16px;
    scroll-behavior: smooth;
  }

  .coins__slider-desktop-list {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: flex-start;
    width: fit-content;
    padding: 0 calc((100% - 992px) / 2);
  }

  /* Coin Card */
  .coin-card {
    width: 580px;
    min-height: auto;
    padding: 32px;
  }

  .coin-card__header {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .coin-card__networks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .coin-card__networks-list {
    margin: 0;
  }

  .coin-card__text {
    font-size: 16px;
    line-height: 24px;
  }

  /* Bottom Block */
  .coins__bottom-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 992px;
    margin: 0px auto 0;
    padding: 0 16px;
  }

  .coins__text {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
  }
}

/* =========================
   Large Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .coins__slider-desktop-list {
    padding: 0 calc((100% - 1200px) / 2);
  }

  .coins__desktop-header,
  .coins__bottom-block {
    max-width: 1232px;
  }
}













/* =========================
   Media Section
========================= */
.media-section {
  min-height: 620px;
  background-color: #1b1e22;
}

.media_new-theme {
  padding: 60px 0;
  background-color: #1b1e22;
}

.media_new-theme h2 {
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.media_new-theme .section__content {
  margin-top: 24px;
}

/* Mobile Title */
.media__mobile-title {
  display: block;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

/* Desktop Header - Hidden on mobile */
.media__desktop-header {
  display: none;
}

/* Slider Container */
.media__slider-desktop {
  overflow-x: auto;
  margin: 0 -16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.media__slider-desktop::-webkit-scrollbar {
  display: none;
}

.media__slider-desktop-list {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-start;
  width: fit-content;
  padding: 0 16px;
}

/* =========================
   Media Card
========================= */
.media-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 280px;
  padding: 24px;
  border: 2px solid #242b35;
  border-radius: 12px;
  background-color: transparent;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.media-card:hover {
  border-color: #daff7c;
}

.media-card__content {
  flex-grow: 1;
}

.media-card__content > img {
  display: block;
  width: 60px;
  height: 46px;
  margin-bottom: 16px;
}

.media-card__content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.media-card__note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #242b35;
}

.media-card__note img {
  display: block;
  height: 24px;
  width: auto;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .media-section {
    min-height: 745px;
  }

  .media_new-theme {
    padding: 120px 0;
  }

  .media_new-theme .container {
    max-width: 100%;
  }

  /* Hide mobile title */
  .media__mobile-title {
    display: none;
  }

  /* Show desktop header */
  .media__desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 992px;
    margin: 0 auto 24px;
    padding: 0 16px;
  }

  .media__desktop-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
  }

  .media__desktop-buttons {
    display: flex;
    gap: 10px;
  }

  /* Navigation Buttons */
  .media__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .media__button:disabled {
    cursor: not-allowed;
  }

  .media__arrow {
    fill: none;
    transition: fill 0.3s ease;
  }

  /* Active button styles */
  .media__button svg rect:nth-child(2) {
    stroke: #DAFF7C;
    transition: stroke 0.3s ease;
  }

  .media__button svg path {
    stroke: #DAFF7C;
    transition: stroke 0.3s ease;
  }

  /* Inactive/Disabled button styles */
  .media__button:disabled svg rect:nth-child(2),
  .media__button.media__button_inactive svg rect:nth-child(2) {
    stroke: #53647B;
  }

  .media__button:disabled svg path,
  .media__button.media__button_inactive svg path {
    stroke: #53647B;
  }

  /* Hover effect for active buttons */
  .media__button:not(:disabled):not(.media__button_inactive):hover .media__arrow rect:first-child {
    fill: rgba(218, 255, 124, 0.1);
  }

  /* Slider */
  .media__slider-desktop {
    margin: 0 -16px;
  }

  .media__slider-desktop-list {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: flex-start;
    width: fit-content;
    padding: 0 calc((100% - 992px) / 2);
  }

  /* Media Card - Desktop */
  .media-card {
    width: 380px;
    padding: 32px;
  }

  .media-card__content > img {
    width: 60px;
    height: 46px;
    margin-bottom: 24px;
  }

  .media-card__content-text {
    font-size: 20px;
    line-height: 28px;
  }

  .media-card__note {
    margin-top: 32px;
    padding-top: 24px;
    z-index: 1;
  }

  .media-card__note img {
    height: 28px;
  }
}

/* =========================
   Large Desktop (1200px+)
========================= */
@media screen and (min-width: 1200px) {
  .media__slider-desktop-list {
    padding: 0 calc((100% - 1200px) / 2);
  }

  .media__desktop-header {
    max-width: 1232px;
  }
}











































/* =========================
   Footer Container
========================= */
.main-new-footer {
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: #fff;
  color: #13171c; /* Dark text for light background */
  margin-top: -24px; /* Slight overlap effect */
  z-index: 10;
}

/* =========================
   FAQ Section
========================= */
.main-new-faq {
  padding: 60px 0;
  background-color: inherit;
}

.faq .section__title {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #13171c;
  text-align: center;
}

.faq .section__content {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion */
.accordion {
  position: relative;
  border-bottom: 1px solid #eef2f6;
  padding: 24px 0;
}

.accordion:first-child {
  border-top: 1px solid #eef2f6;
}

.accordion__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #13171c;
  cursor: pointer;
  padding-right: 40px;
  transition: color 0.3s ease;
}

.accordion__title:hover {
  color: #64acff;
}

.accordion__button {
  position: absolute;
  top: 24px;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2313171C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.accordion.active .accordion__button {
  transform: rotate(180deg);
}

.accordion.active .accordion__title {
  color: #64acff;
}

.accordion__content {
  display: none;
  padding-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #53647b;
}

.accordion.active .accordion__content {
  display: block;
  animation: fadeIn 0.3s ease;
}

.accordion__content p {
  margin-bottom: 16px;
}

.accordion__content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.accordion__content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.accordion__content a {
  color: #64acff;
  text-decoration: none;
  font-weight: 500;
}

.accordion__content a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Get Started Section
========================= */
.get-started__main-new {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
  background-color: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.get-started__box {
  padding: 40px 24px;
  border-radius: 24px;
  background-color: #1b1e22; /* Dark card inside light section */
  text-align: center;
  background-image: url("/images/decor/bg-pattern.svg"); /* Optional pattern */
  background-size: cover;
}

.get-started__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
}

.get-started__text {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  opacity: 0.9;
}

.get-started__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.get-started__button {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button (Book a call) */
.get-started__button:first-child {
  background-color: #daff7c;
  color: #13171c;
  border: 2px solid #daff7c;
}

.get-started__button:first-child:hover {
  background-color: transparent;
  color: #daff7c;
}

/* Secondary Button (Create account) */
.now-button_white-border {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.now-button_white-border:hover {
  background-color: #fff;
  color: #1b1e22;
}

/* =========================
   Desktop (992px+)
========================= */
@media screen and (min-width: 992px) {
  .main-new-footer {
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    margin-top: -40px;
  }

  .main-new-faq {
    padding: 100px 0 80px;
  }

  .faq .section__title {
    font-size: 56px;
    line-height: 72px;
    margin-bottom: 48px;
  }

  .accordion__title {
    font-size: 24px;
    line-height: 32px;
  }

  .get-started__main-new {
    padding: 80px 0 120px;
  }

  .get-started__box {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .get-started__title {
    font-size: 56px;
    line-height: 64px;
  }

  .get-started__text {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
  }

  .get-started__links {
    flex-direction: row;
    gap: 24px;
  }

  .get-started__button {
    width: auto;
    padding: 0 32px;
    font-size: 18px;
  }
}


















/* =========================
   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;
  }
}