@charset "UTF-8";
/* ============================================================
   PREMIUM FINTECH DESIGN SYSTEM
   Futuristic dark UI — glassmorphism, neon accents, motion
   ============================================================ */

:root {
    --bg:            #050816;
    --bg-2:          #0F172A;
    --green:         #22C55E;
    --blue:          #3B82F6;
    --cyan:          #06B6D4;
    --warn:          #F59E0B;
    --danger:        #EF4444;
    --text:          #FFFFFF;
    --muted:         #94A3B8;
    --card:          rgba(255, 255, 255, .06);
    --card-2:        rgba(255, 255, 255, .03);
    --line:          rgba(255, 255, 255, .12);
    --radius:        18px;
    --radius-sm:     14px;
    --radius-lg:     24px;
    --grad-primary:  linear-gradient(115deg, #06B6D4 0%, #3B82F6 55%, #22C55E 120%);
    --grad-soft:     linear-gradient(160deg, rgba(59, 130, 246, .16), rgba(6, 182, 212, .05) 60%, transparent);
    --grad-text:     linear-gradient(100deg, #FFFFFF 10%, #7DD3FC 50%, #22C55E 95%);
    --shadow:        0 24px 60px -28px rgba(2, 8, 30, .95);
    --shadow-glow:   0 0 0 1px rgba(255, 255, 255, .07), 0 30px 70px -35px rgba(6, 182, 212, .55);
    --font-head:     'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body:     'Poppins', 'Segoe UI', sans-serif;
    --ease:          cubic-bezier(.16, .84, .44, 1);
    --shell:         1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin:                  0;
    background:              var(--bg);
    color:                   var(--text);
    font-family:             var(--font-body);
    font-size:               16px;
    line-height:             1.75;
    overflow-x:              hidden;
    -webkit-font-smoothing:  antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ambient background field */
body::before {
    content:        "";
    position:       fixed;
    inset:          0;
    pointer-events: none;
    z-index:        0;
    background:
        radial-gradient(720px 420px at 8% -6%, rgba(59, 130, 246, .22), transparent 65%),
        radial-gradient(680px 460px at 96% 4%, rgba(6, 182, 212, .16), transparent 62%),
        radial-gradient(900px 620px at 50% 108%, rgba(34, 197, 94, .12), transparent 68%);
}

#fx-cursor-glow {
    position:       fixed;
    top:            0;
    left:           0;
    width:          520px;
    height:         520px;
    margin:         -260px 0 0 -260px;
    border-radius:  50%;
    pointer-events: none;
    z-index:        1;
    opacity:        0;
    transition:     opacity .5s var(--ease);
    background:     radial-gradient(circle, rgba(6, 182, 212, .12), rgba(59, 130, 246, .06) 45%, transparent 70%);
}

main.content, header, footer { position: relative; z-index: 2; }

h1, h2, h3, h4, h5, h6,
.slider-title, .innerHeader__title {
    font-family:    var(--font-head);
    font-weight:    700;
    letter-spacing: -.02em;
    line-height:    1.12;
    color:          var(--text);
    margin:         0 0 18px;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0 0 18px; color: var(--muted); }

a { color: var(--cyan); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(34, 197, 94, .3); }

.container, .main-wrapper {
    width:      100%;
    max-width:  var(--shell);
    margin:     0 auto;
    padding:    0 24px;
}

.fx-gradient-text {
    background:              var(--grad-text);
    -webkit-background-clip: text;
    background-clip:         text;
    color:                   transparent;
}

.fx-eyebrow {
    display:        inline-flex;
    align-items:    center;
    gap:            10px;
    font-family:    var(--font-head);
    font-size:      .72rem;
    font-weight:    600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color:          #7DD3FC;
    background:     rgba(6, 182, 212, .1);
    border:         1px solid rgba(6, 182, 212, .28);
    border-radius:  999px;
    padding:        7px 16px;
    margin-bottom:  22px;
}

.fx-eyebrow i { color: var(--green); }

.fx-section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.fx-section--tight { padding: clamp(44px, 5vw, 72px) 0; }

.fx-section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.fx-section-head p { font-size: 1.03rem; }
.fx-section-head--left { margin-left: 0; text-align: left; }

/* ---------------- Buttons ---------------- */
.fx-btn,
.mainBlock__btn,
.trading-platform__btn,
.sectionAboutPlatform__btn,
.action-strip__btn,
.ourCompany__btn,
.platforms__btn {
    position:        relative;
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    gap:             10px;
    overflow:        hidden;
    isolation:       isolate;
    font-family:     var(--font-head);
    font-size:       .93rem;
    font-weight:     600;
    letter-spacing:  .03em;
    padding:         15px 32px;
    border:          0;
    border-radius:   999px;
    cursor:          pointer;
    color:           #04121f;
    background:      var(--grad-primary);
    background-size: 200% 200%;
    box-shadow:      0 18px 40px -18px rgba(6, 182, 212, .8);
    transition:      transform .3s var(--ease), box-shadow .3s var(--ease), background-position .6s var(--ease);
}

.fx-btn:hover,
.mainBlock__btn:hover,
.trading-platform__btn:hover,
.sectionAboutPlatform__btn:hover,
.action-strip__btn:hover,
.ourCompany__btn:hover,
.platforms__btn:hover {
    color:              #04121f;
    transform:          translateY(-3px);
    background-position: 100% 50%;
    box-shadow:         0 26px 60px -20px rgba(34, 197, 94, .75);
}

.fx-btn--ghost {
    background:  rgba(255, 255, 255, .04);
    border:      1px solid var(--line);
    color:       var(--text);
    box-shadow:  none;
    backdrop-filter: blur(12px);
}

.fx-btn--ghost:hover {
    color:       #fff;
    border-color: rgba(6, 182, 212, .55);
    background:  rgba(6, 182, 212, .1);
    box-shadow:  0 20px 44px -26px rgba(6, 182, 212, .9);
}

.fx-btn--sm { padding: 11px 22px; font-size: .84rem; }

.fx-ripple {
    position:      absolute;
    border-radius: 50%;
    transform:     scale(0);
    animation:     fx-ripple .65s linear;
    background:    rgba(255, 255, 255, .45);
    pointer-events: none;
}

@keyframes fx-ripple { to { transform: scale(3.2); opacity: 0; } }

/* ---------------- Cards ---------------- */
.fx-card {
    position:        relative;
    background:      var(--card);
    border:          1px solid var(--line);
    border-radius:   var(--radius);
    padding:         30px;
    backdrop-filter: blur(18px);
    overflow:        hidden;
    transition:      transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}

.fx-card::after {
    content:    "";
    position:   absolute;
    inset:      0;
    opacity:    0;
    background: var(--grad-soft);
    transition: opacity .45s var(--ease);
    pointer-events: none;
}

.fx-card:hover { transform: translateY(-8px); border-color: rgba(6, 182, 212, .4); box-shadow: var(--shadow-glow); }
.fx-card:hover::after { opacity: 1; }
.fx-card > * { position: relative; z-index: 1; }

.fx-card h3, .fx-card h4 { margin-bottom: 10px; }
.fx-card p:last-child { margin-bottom: 0; }

.fx-card__icon {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           58px;
    height:          58px;
    border-radius:   16px;
    font-size:       1.35rem;
    color:           #7DD3FC;
    background:      linear-gradient(150deg, rgba(59, 130, 246, .25), rgba(6, 182, 212, .08));
    border:          1px solid rgba(125, 211, 252, .26);
    margin-bottom:   20px;
}

.fx-card__icon img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }

.fx-grid { display: grid; gap: 22px; }
.fx-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fx-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fx-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------------- Stats ---------------- */
.fx-stats {
    display:         grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap:             1px;
    background:      var(--line);
    border:          1px solid var(--line);
    border-radius:   var(--radius);
    overflow:        hidden;
    backdrop-filter: blur(16px);
}

.fx-stat { background: rgba(9, 14, 34, .82); padding: 28px 24px; text-align: center; }
.fx-stat__num {
    font-family: var(--font-head);
    font-size:   clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    background:  var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color:       transparent;
}
.fx-stat__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0; }

/* ---------------- Ticker ---------------- */
#tradestrip, .fx-ticker {
    position:   relative;
    overflow:   hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 22, .8);
    z-index:    3;
}

.fx-ticker__track { display: flex; gap: 46px; padding: 11px 0; width: max-content; animation: fx-marquee 38s linear infinite; }
.fx-ticker:hover .fx-ticker__track { animation-play-state: paused; }
.fx-ticker__item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: .8rem; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
.fx-ticker__item b { color: #fff; font-weight: 600; }
.fx-up { color: var(--green); }
.fx-down { color: var(--danger); }

@keyframes fx-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Header ---------------- */
.header {
    position:   fixed;
    top:        0;
    left:       0;
    right:      0;
    z-index:    900;
    background: rgba(5, 8, 22, .55);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: background .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
}

body { padding-top: 84px; }

.header.is-stuck {
    background:   rgba(5, 8, 22, .92);
    border-color: var(--line);
    box-shadow:   0 18px 40px -30px #000;
}

.header__wrapper {
    max-width:       var(--shell);
    margin:          0 auto;
    padding:         14px 24px;
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    gap:             20px;
}

.header_left { display: flex; align-items: center; gap: 16px; }
.header__logo { display: inline-flex; align-items: center; }
.header__img { max-height: 44px; width: auto; }

.header__language ul { list-style: none; margin: 0; padding: 0; }
.header__language > div > ul > li { position: relative; }
.header__language .wpml-ls-flag { width: 22px; border-radius: 4px; }
.header__language a { display: inline-flex; padding: 6px; border-radius: 8px; }
.header__language a:hover { background: rgba(255, 255, 255, .08); }
.header__language .wpml-ls-sub-menu {
    position:      absolute;
    top:           100%;
    left:          0;
    display:       none;
    background:    rgba(15, 23, 42, .97);
    border:        1px solid var(--line);
    border-radius: 12px;
    padding:       6px;
    backdrop-filter: blur(16px);
}
.header__language li:hover > .wpml-ls-sub-menu,
.header__language li:focus-within > .wpml-ls-sub-menu { display: block; }

.header__nav { display: flex; }
.header__menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.header__menu > li { position: relative; }
.header__menu > li > a {
    display:        block;
    font-family:    var(--font-head);
    font-size:      .9rem;
    font-weight:    500;
    color:          #E2E8F0;
    padding:        10px 16px;
    border-radius:  999px;
    transition:     color .25s var(--ease), background .25s var(--ease);
}
.header__menu > li > a::after {
    content:     "";
    display:     block;
    height:      2px;
    width:       0;
    margin:      4px auto 0;
    border-radius: 2px;
    background:  var(--grad-primary);
    transition:  width .3s var(--ease);
}
.header__menu > li:hover > a,
.header__menu > li.active > a { color: #fff; background: rgba(255, 255, 255, .06); }
.header__menu > li:hover > a::after,
.header__menu > li.active > a::after { width: 60%; }

.header__menu .sub-menu {
    position:      absolute;
    top:           calc(100% + 12px);
    left:          50%;
    min-width:     232px;
    list-style:    none;
    margin:        0;
    padding:       10px;
    transform:     translate(-50%, 10px);
    opacity:       0;
    visibility:    hidden;
    background:    rgba(12, 18, 40, .97);
    border:        1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow:    var(--shadow);
    backdrop-filter: blur(20px);
    transition:    opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.header__menu > li:hover .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.header__menu .sub-menu a {
    display:       block;
    padding:       10px 14px;
    border-radius: 10px;
    font-size:     .88rem;
    color:         var(--muted);
}
.header__menu .sub-menu a:hover { color: #fff; background: rgba(6, 182, 212, .14); }

.header__account { display: flex; align-items: center; gap: 12px; }
.ts-btn {
    display:       inline-flex;
    align-items:   center;
    font-family:   var(--font-head);
    font-size:     .87rem;
    font-weight:   600;
    padding:       11px 22px;
    border-radius: 999px;
    border:        1px solid var(--line);
    color:         #E2E8F0;
    transition:    all .3s var(--ease);
}
.ts-btn:hover { color: #fff; border-color: rgba(6, 182, 212, .6); background: rgba(6, 182, 212, .12); }
.ts-btn-open-acc {
    border:     0;
    color:      #04121f;
    background: var(--grad-primary);
    box-shadow: 0 16px 36px -18px rgba(6, 182, 212, .85);
}
.ts-btn-open-acc:hover { color: #04121f; transform: translateY(-2px); box-shadow: 0 22px 46px -18px rgba(34, 197, 94, .8); }

.header__mobileMenu {
    display:       none;
    align-items:   center;
    gap:           8px;
    cursor:        pointer;
    color:         #fff;
    font-family:   var(--font-head);
    font-size:     .8rem;
    letter-spacing: .12em;
    padding:       9px 14px;
    border:        1px solid var(--line);
    border-radius: 999px;
}
.header__mobileClose { width: 13px; fill: #fff; display: none; }
.header__mobileMenu.is-open .fa-bars { display: none; }
.header__mobileMenu.is-open .header__mobileClose { display: block; }

/* ---------------- Hero / Slider ---------------- */
.main-slider-wrap { position: relative; }

.fx-hero {
    position:  relative;
    min-height: min(88vh, 780px);
    display:   flex;
    align-items: center;
    overflow:  hidden;
    border-bottom: 1px solid var(--line);
}

.slider-item, .fx-hero__slide {
    position:    relative;
    min-height:  min(88vh, 780px);
    display:     flex !important;
    align-items: center;
    background-size:     cover;
    background-position: center;
    overflow:    hidden;
}

.slider-item::before, .fx-hero__slide::before {
    content:    "";
    position:   absolute;
    inset:      0;
    background: linear-gradient(100deg, rgba(5, 8, 22, .97) 8%, rgba(5, 8, 22, .82) 42%, rgba(5, 8, 22, .45) 100%);
}

.slider-item::after, .fx-hero__slide::after {
    content:    "";
    position:   absolute;
    inset:      0;
    opacity:    .35;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 30% 50%, #000, transparent 78%);
}

.slider-align, .fx-hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 40px; padding-bottom: 40px; }
.slider-text { max-width: 720px; }
.slider-sub-text {
    font-family: var(--font-head);
    font-size:   .78rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color:       #7DD3FC;
    margin-bottom: 14px;
}
.slider-title {
    font-family: var(--font-head);
    font-size:   clamp(2.4rem, 6vw, 4.3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin:      0 0 18px;
    background:  var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color:       transparent;
}
.slider-sub-text-2 { font-size: 1.06rem; color: var(--muted); max-width: 560px; }
.list-slider, .list.list-slider {
    list-style: none;
    display:    flex;
    flex-wrap:  wrap;
    gap:        10px;
    padding:    0;
    margin:     22px 0 0;
}
.list-slider li {
    font-family:   var(--font-head);
    font-size:     .8rem;
    letter-spacing: .05em;
    color:         #CBD5E1;
    padding:       8px 16px;
    border:        1px solid var(--line);
    border-radius: 999px;
    background:    var(--card);
    backdrop-filter: blur(12px);
}
.slider-btn-wrap { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Swiper */
.swiper { width: 100%; }
.swiper-pagination-bullet { background: rgba(255, 255, 255, .35); opacity: 1; width: 26px; height: 4px; border-radius: 3px; transition: all .3s var(--ease); }
.swiper-pagination-bullet-active { background: var(--grad-primary); width: 46px; }
.swiper-button-next, .swiper-button-prev {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    color: #fff;
    backdrop-filter: blur(14px);
    transition: all .3s var(--ease);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: rgba(6, 182, 212, .18); border-color: rgba(6, 182, 212, .5); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; font-weight: 700; }

/* floating hero visual */
.fx-float { animation: fx-float 7s ease-in-out infinite; }
@keyframes fx-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ---------------- Inner page hero ---------------- */
.innerHeader {
    position:   relative;
    padding:    clamp(80px, 12vw, 150px) 0 clamp(60px, 9vw, 110px);
    background-size: cover !important;
    background-position: center !important;
    overflow:   hidden;
    border-bottom: 1px solid var(--line);
}
.innerHeader::before {
    content:    "";
    position:   absolute;
    inset:      0;
    background: linear-gradient(120deg, rgba(5, 8, 22, .96) 10%, rgba(5, 8, 22, .8) 55%, rgba(6, 182, 212, .18) 100%);
}
.innerHeader .container { position: relative; z-index: 2; }
.banner-box { max-width: 780px; }
.innerHeader__title {
    font-size:  clamp(2.2rem, 5vw, 3.6rem);
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color:      transparent;
    margin-bottom: 14px;
}
.innerHeader__description p { font-size: 1.06rem; color: #CBD5E1; margin: 0; max-width: 640px; }

/* breadcrumb-ish meta row */
.fx-hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.fx-chip {
    display:       inline-flex;
    align-items:   center;
    gap:           8px;
    font-family:   var(--font-head);
    font-size:     .78rem;
    letter-spacing: .06em;
    color:         #CBD5E1;
    padding:       8px 15px;
    border:        1px solid var(--line);
    border-radius: 999px;
    background:    var(--card);
    backdrop-filter: blur(12px);
}
.fx-chip i { color: var(--green); }

/* ---------------- Prose / default content ---------------- */
.defaultStyles, .fx-prose { font-size: 1rem; }
.defaultStyles h2, .defaultStyles h3, .defaultStyles h4,
.fx-prose h2, .fx-prose h3, .fx-prose h4 { margin-top: 34px; }
.defaultStyles h2:first-child, .fx-prose h2:first-child,
.defaultStyles h3:first-child, .fx-prose h3:first-child,
.defaultStyles h4:first-child, .fx-prose h4:first-child { margin-top: 0; }
.defaultStyles p, .fx-prose p { color: var(--muted); }
.defaultStyles ul, .fx-prose ul, .sectionAboutPlatform .info ul, .ourCompany ul, .defaultStyles ol, .fx-prose ol { padding-left: 0; margin: 0 0 22px; list-style: none; }
.defaultStyles ol, .fx-prose ol { list-style: decimal; padding-left: 22px; color: var(--muted); }
.defaultStyles ol li, .fx-prose ol li { margin-bottom: 10px; }
.defaultStyles ul > li, .fx-prose ul > li, .sectionAboutPlatform .info ul > li, .ourCompany ul > li {
    position:     relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color:        var(--muted);
}
.defaultStyles ul > li::before, .fx-prose ul > li::before, .sectionAboutPlatform .info ul > li::before, .ourCompany ul > li::before {
    content:     "\f058";
    font-family: FontAwesome, 'Font Awesome 6 Free';
    font-weight: 900;
    position:    absolute;
    left:        0;
    top:         0;
    color:       var(--green);
    font-size:   .95rem;
}
.fx-prose a, .defaultStyles a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* Panel wrapper for long legal / info content */
.fx-panel {
    background:      var(--card-2);
    border:          1px solid var(--line);
    border-radius:   var(--radius-lg);
    padding:         clamp(24px, 4vw, 52px);
    backdrop-filter: blur(16px);
    box-shadow:      var(--shadow);
}

/* ---------------- Side menu (platform / legal pages) ---------------- */
.tabs-container { padding-bottom: 0; }
.side-bar-menu, .fx-sidenav {
    list-style:    none;
    display:       flex;
    flex-wrap:     wrap;
    gap:           10px;
    margin:        0 0 40px;
    padding:       10px;
    background:    var(--card);
    border:        1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    width:         fit-content;
    max-width:     100%;
}
.side-bar-menu li a, .fx-sidenav li a {
    display:       block;
    font-family:   var(--font-head);
    font-size:     .86rem;
    font-weight:   500;
    color:         var(--muted);
    padding:       9px 20px;
    border-radius: 999px;
    transition:    all .3s var(--ease);
}
.side-bar-menu li a:hover, .fx-sidenav li a:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.side-bar-menu li.current-menu-item a, .fx-sidenav li.is-active a {
    color:      #04121f;
    background: var(--grad-primary);
}

/* ---------------- Feature lists (gray__list) ---------------- */
.gray__list, .fx-featurelist {
    list-style: none;
    padding:    0;
    margin:     0 0 30px;
    display:    grid;
    gap:        16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gray__list_Item, .fx-featurelist > li {
    position:        relative;
    padding:         24px 26px;
    background:      var(--card);
    border:          1px solid var(--line);
    border-radius:   var(--radius);
    backdrop-filter: blur(14px);
    transition:      transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.gray__list_Item::before, .fx-featurelist > li::before { display: none; }
.gray__list_Item:hover, .fx-featurelist > li:hover {
    transform:    translateY(-6px);
    border-color: rgba(6, 182, 212, .4);
    box-shadow:   var(--shadow-glow);
}
.gray__list_Title, .fx-featurelist strong {
    display:     block;
    font-family: var(--font-head);
    font-size:   1.05rem;
    font-weight: 600;
    color:       #fff;
    margin-bottom: 6px;
}
.gray__list_Text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------------- Tables ---------------- */
.fx-table-wrap {
    overflow-x:      auto;
    border:          1px solid var(--line);
    border-radius:   var(--radius-lg);
    background:      var(--card-2);
    backdrop-filter: blur(16px);
    box-shadow:      var(--shadow);
}
table, .fx-table {
    width:           100%;
    border-collapse: collapse;
    font-size:       .93rem;
    min-width:       560px;
}
table thead th, .fx-table thead th {
    font-family:    var(--font-head);
    font-size:      .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color:          #7DD3FC;
    text-align:     left;
    padding:        18px 22px;
    background:     rgba(59, 130, 246, .1);
    border-bottom:  1px solid var(--line);
    white-space:    nowrap;
}
table tbody td, .fx-table tbody td {
    padding:       17px 22px;
    color:         var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
table tbody tr, .fx-table tbody tr { transition: background .3s var(--ease); }
table tbody tr:hover, .fx-table tbody tr:hover { background: rgba(255, 255, 255, .04); }
table tbody td:first-child, .fx-table tbody td:first-child { color: #fff; font-weight: 500; }

/* ---------------- Accordion (FAQ) ---------------- */
.fx-accordion { display: grid; gap: 14px; }
.fx-acc {
    background:      var(--card);
    border:          1px solid var(--line);
    border-radius:   var(--radius);
    overflow:        hidden;
    backdrop-filter: blur(14px);
    transition:      border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.fx-acc.is-open { border-color: rgba(6, 182, 212, .45); box-shadow: var(--shadow-glow); }
.fx-acc__q {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    gap:             18px;
    width:           100%;
    text-align:      left;
    background:      transparent;
    border:          0;
    cursor:          pointer;
    color:           #fff;
    font-family:     var(--font-head);
    font-size:       1rem;
    font-weight:     500;
    padding:         20px 24px;
}
.fx-acc__q i { color: var(--cyan); transition: transform .35s var(--ease); flex-shrink: 0; }
.fx-acc.is-open .fx-acc__q i { transform: rotate(45deg); }
.fx-acc__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.fx-acc__a > div { padding: 0 24px 22px; color: var(--muted); font-size: .95rem; }
.fx-acc__a p:last-child { margin-bottom: 0; }

/* ---------------- Glossary ---------------- */
.fx-alpha { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.fx-alpha button {
    width:         42px;
    height:        42px;
    border-radius: 12px;
    border:        1px solid var(--line);
    background:    var(--card);
    color:         var(--muted);
    font-family:   var(--font-head);
    font-weight:   600;
    cursor:        pointer;
    transition:    all .28s var(--ease);
}
.fx-alpha button:hover { color: #fff; border-color: rgba(6, 182, 212, .5); transform: translateY(-2px); }
.fx-alpha button.is-active { color: #04121f; background: var(--grad-primary); border-color: transparent; }

.fx-search {
    display:       flex;
    align-items:   center;
    gap:           12px;
    padding:       6px 6px 6px 20px;
    border:        1px solid var(--line);
    border-radius: 999px;
    background:    var(--card);
    backdrop-filter: blur(14px);
    max-width:     520px;
    margin-bottom: 26px;
}
.fx-search i { color: var(--muted); }
.fx-search input {
    flex:        1;
    border:      0;
    outline:     0;
    background:  transparent;
    color:       #fff;
    font-family: var(--font-body);
    font-size:   .95rem;
    padding:     10px 0;
}
.fx-search input::placeholder { color: #64748B; }

.fx-term { border-bottom: 1px solid rgba(255, 255, 255, .07); padding: 22px 0; }
.fx-term:last-child { border-bottom: 0; }
.fx-term h4 { margin: 0 0 8px; font-size: 1.05rem; color: #fff; }
.fx-term p { margin: 0; font-size: .95rem; }
.fx-letter-head {
    font-family:    var(--font-head);
    font-size:      2rem;
    font-weight:    700;
    color:          rgba(125, 211, 252, .28);
    margin:         34px 0 6px;
}

/* ---------------- Media / logo strip ---------------- */
.fx-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px; }
.fx-logos img, .footer__partner {
    height:     34px;
    width:      auto;
    opacity:    .55;
    filter:     grayscale(1) brightness(1.7);
    transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
}
.fx-logos img:hover, .footer__partner:hover { opacity: 1; filter: none; transform: translateY(-3px); }

/* ---------------- Split section ---------------- */
.fx-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.fx-split--rev > *:first-child { order: 2; }

.fx-media {
    position:      relative;
    border-radius: var(--radius-lg);
    overflow:      hidden;
    border:        1px solid var(--line);
    box-shadow:    var(--shadow-glow);
}
.fx-media img { width: 100%; display: block; }
.fx-media::after {
    content:    "";
    position:   absolute;
    inset:      0;
    background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 22, .55));
    pointer-events: none;
}

/* legacy section adapters */
.trading-platform, .sectionAboutPlatform, .benefits, .company-area, .platforms, .defaultStyles.company-area {
    padding: clamp(64px, 8vw, 118px) 0;
    position: relative;
}
.sectionAboutPlatform { background-size: cover !important; background-position: center !important; }
.sectionAboutPlatform::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 8, 22, .97) 20%, rgba(5, 8, 22, .72) 75%);
}
.sectionAboutPlatform .container { position: relative; z-index: 2; }
.sectionAboutPlatform .info { max-width: 620px; }

.trading-platform__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}
.trading-platform__item {
    display:       flex;
    align-items:   center;
    gap:           16px;
    padding:       22px;
    background:    var(--card);
    border:        1px solid var(--line);
    border-radius: var(--radius);
    text-align:    left;
    backdrop-filter: blur(14px);
    transition:    transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.trading-platform__item:hover { transform: translateY(-6px); border-color: rgba(34, 197, 94, .42); box-shadow: var(--shadow-glow); }
.trading-platform__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 13px;
    background: linear-gradient(150deg, rgba(34, 197, 94, .25), rgba(6, 182, 212, .08));
    border: 1px solid rgba(34, 197, 94, .3);
}
.trading-platform__icon img { width: 20px; filter: brightness(0) invert(1); }
.trading-platform__text { font-size: .95rem; color: #CBD5E1; }

.benefits__table { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.benefits__item {
    background:      var(--card);
    border:          1px solid var(--line);
    border-radius:   var(--radius);
    padding:         32px 28px;
    backdrop-filter: blur(16px);
    transition:      transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.benefits__item:hover { transform: translateY(-8px); border-color: rgba(6, 182, 212, .4); box-shadow: var(--shadow-glow); }
.benefits__icon { width: 52px; height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .92; }
.benefits__head { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.benefits__text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------------- Action strip / CTA ---------------- */
.action-strip, .fx-cta { padding: clamp(40px, 6vw, 70px) 0; }
.action-strip__wrapper, .fx-cta__inner {
    position:        relative;
    overflow:        hidden;
    display:         flex;
    flex-wrap:       wrap;
    align-items:     center;
    justify-content: space-between;
    gap:             26px;
    padding:         clamp(30px, 5vw, 54px);
    border:          1px solid rgba(6, 182, 212, .28);
    border-radius:   var(--radius-lg);
    background:      linear-gradient(115deg, rgba(59, 130, 246, .18), rgba(6, 182, 212, .08) 45%, rgba(34, 197, 94, .14));
    backdrop-filter: blur(18px);
    box-shadow:      var(--shadow-glow);
}
.action-strip__wrapper::before, .fx-cta__inner::before {
    content:    "";
    position:   absolute;
    width:      420px;
    height:     420px;
    right:      -120px;
    top:        -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .28), transparent 68%);
    animation:  fx-float 9s ease-in-out infinite;
}
.action-strip__title, .fx-cta__inner h2 {
    position:    relative;
    font-family: var(--font-head);
    font-size:   clamp(1.4rem, 2.6vw, 2.1rem);
    font-weight: 700;
    color:       #fff;
    margin:      0;
    max-width:   640px;
    line-height: 1.2;
}
.action-strip__btn { position: relative; }

/* ---------------- Footer ---------------- */
.footer {
    position:   relative;
    margin-top: 40px;
    padding:    clamp(50px, 7vw, 82px) 0 34px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, .7), rgba(5, 8, 22, 1));
}
.footer__menuInner {
    list-style: none;
    display:    grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap:        30px;
    margin:     0 0 46px;
    padding:    0;
}
.footer__menuInner > li > a {
    font-family:    var(--font-head);
    font-size:      .78rem;
    font-weight:    600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color:          #fff;
}
.footer__menuInner .sub-menu { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.footer__menuInner .sub-menu a { font-size: .92rem; color: var(--muted); }
.footer__menuInner .sub-menu a:hover { color: var(--cyan); padding-left: 5px; }
.footer__menuInner .sub-menu a { transition: color .25s var(--ease), padding-left .25s var(--ease); }

.footer__social {
    display:         flex;
    flex-wrap:       wrap;
    align-items:     center;
    justify-content: space-between;
    gap:             26px;
    padding:         28px 0;
    border-top:      1px solid var(--line);
    border-bottom:   1px solid var(--line);
}
.footer__socialIcons { list-style: none; display: flex; align-items: center; gap: 12px; margin: 0; padding: 0; }
.footer__socialText { font-family: var(--font-head); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.footer__socialLink {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: #CBD5E1;
    background: var(--card);
    transition: all .3s var(--ease);
}
.footer__socialLink:hover { color: #04121f; background: var(--grad-primary); transform: translateY(-3px); border-color: transparent; }
.footer__app { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer__appTitle { font-family: var(--font-head); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.footer__app_google, .footer__app_apple {
    display: block;
    width: 132px; height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .8;
    transition: all .3s var(--ease);
}
.footer__app_google { background-image: url(../images/google_play.png); }
.footer__app_apple { background-image: url(../images/app_store.png); }
.footer__app_google:hover, .footer__app_apple:hover { opacity: 1; transform: translateY(-3px); border-color: rgba(6, 182, 212, .45); }

.footer__partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px; padding: 32px 0; }
.footer__disclaimer { font-size: .78rem; line-height: 1.85; color: #64748B; border-top: 1px solid var(--line); padding-top: 26px; }
.footer__disclaimer a { color: var(--muted); text-decoration: underline; }
.footer__disclaimer a:hover { color: var(--cyan); }

/* ---------------- Preloader ---------------- */
#preloader {
    position:        fixed;
    inset:           0;
    z-index:         9999;
    display:         flex;
    align-items:     center;
    justify-content: center;
    background:      var(--bg);
    transition:      opacity .6s var(--ease), visibility .6s;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; }
#preloader img { max-width: 84px; border-radius: 50%; animation: fx-pulse 1.4s ease-out infinite; }
@keyframes fx-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(6, 182, 212, .45); }
    100% { box-shadow: 0 0 0 38px rgba(6, 182, 212, 0); }
}

/* ---------------- Scroll reveal (fallback if AOS unavailable) ---------------- */
[data-aos] { transition-timing-function: var(--ease); }

.fx-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fx-reveal.is-in { opacity: 1; transform: none; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050816; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .14); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(6, 182, 212, .5); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
    .fx-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fx-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    body { padding-top: 74px; }
    .header__mobileMenu { display: inline-flex; }
    .header__wrapper { padding: 12px 20px; }
    .header_center { position: static; }
    .header__nav {
        position:   fixed;
        top:        74px;
        left:       0;
        right:      0;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        display:    block;
        padding:    18px 20px 40px;
        background: rgba(5, 8, 22, .98);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(22px);
        transform:  translateY(-14px);
        opacity:    0;
        visibility: hidden;
        transition: all .35s var(--ease);
    }
    .header__nav.is-open { transform: none; opacity: 1; visibility: visible; }
    .header__menu { flex-direction: column; align-items: stretch; gap: 4px; }
    .header__menu > li > a { padding: 14px 12px; border-radius: 12px; font-size: 1rem; }
    .header__menu > li > a::after { display: none; }
    .header__menu .sub-menu {
        position:   static;
        transform:  none;
        min-width:  0;
        margin:     0 0 8px 10px;
        background: transparent;
        border:     0;
        box-shadow: none;
        padding:    0 0 0 10px;
        border-left: 1px solid var(--line);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .3s ease, opacity .25s ease;
    }
    .header__menu > li.is-expanded > .sub-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
    }
    .header__menu > li.menu-item-has-children > a .fa-angle-down { transition: transform .25s ease; }
    .header__menu > li.is-expanded > a .fa-angle-down { transform: rotate(180deg); }
    .header__account { gap: 8px; }
    .lang-switch__toggle { padding: 6px 10px !important; font-size: .78rem; }
    .lang-switch__flag { width: 18px; height: 12px; }
    .header__wrapper { gap: 10px; flex-wrap: nowrap; }
    .header_right { flex-shrink: 0; }
    .header__account .ts-btn {
        padding: 8px 14px !important;
        font-size: .78rem !important;
        white-space: nowrap;
    }
    .header__account .ts-btn-open-acc { padding: 9px 16px !important; }
    .fx-split { grid-template-columns: 1fr; }
    .fx-split--rev > *:first-child { order: 0; }
    .fx-grid--3, .fx-grid--2 { grid-template-columns: 1fr; }
}


@media (max-width: 640px) {
    body { font-size: 15px; }
    .container, .main-wrapper { padding: 0 18px; }
    .header__wrapper { padding: 10px 14px !important; gap: 6px; }
    .header__account { gap: 6px; }
    .header__mobileMenu span { display: none; }
    .header__mobileMenu { padding: 8px 10px !important; }
    .header__account .log-in { display: none; }
    .header__account .ts-btn-open-acc {
        padding: 8px 12px !important;
        font-size: .72rem !important;
        letter-spacing: .02em;
    }
    .lang-switch__toggle { padding: 5px 8px !important; font-size: .72rem; }
    .lang-switch__code { display: none; }
    .fx-grid--4 { grid-template-columns: 1fr; }
    .fx-stats { grid-template-columns: 1fr; }
    .slider-item, .fx-hero__slide, .fx-hero { min-height: 86vh; }
    .slider-btn-wrap { flex-direction: column; align-items: stretch; }
    .slider-btn-wrap a { justify-content: center; }
    .header__img { max-height: 34px; }
    .header__language { display: none; }
    .action-strip__wrapper, .fx-cta__inner { flex-direction: column; align-items: flex-start; }
    .side-bar-menu, .fx-sidenav { border-radius: var(--radius); }
    .swiper-button-next, .swiper-button-prev { display: none; }
}

/* ============ Language switcher (Google Translate) ============ */
.lang-switch { position: relative; }
.lang-switch__toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(6, 182, 212, .35);
    background: rgba(6, 182, 212, .08);
    color: #E2E8F0 !important;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.lang-switch__toggle:hover {
    background: rgba(6, 182, 212, .16);
    border-color: rgba(6, 182, 212, .6);
    transform: translateY(-1px);
}
.lang-switch__toggle .fa { font-size: .75rem; opacity: .8; }
.lang-switch__flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }
.lang-switch__code { font-weight: 700; letter-spacing: .06em; }
.lang-switch__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: rgba(15, 23, 42, .97);
    border: 1px solid rgba(6, 182, 212, .25);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 46px -18px rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 999;
}
.lang-switch.is-open .lang-switch__menu,
.lang-switch:hover .lang-switch__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switch__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #E2E8F0;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .2s ease, color .2s ease;
}
.lang-switch__item:hover { background: rgba(6, 182, 212, .15); color: #fff; }

/* Hide Google Translate default UI, keep it functional */
#google_translate_element { position: fixed; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-logo-link,
.goog-te-gadget span { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }

@media (max-width: 1024px) {
    .lang-switch__menu { right: auto; left: 0; }
}

/* ---------------- Footer responsive refinements ---------------- */
@media (max-width: 991px) {
    .footer__menuInner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        margin-bottom: 34px;
    }
    .footer__social {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer__app { width: 100%; }
    .footer__partners { gap: 22px; padding: 26px 0; }
}
@media (max-width: 640px) {
    .footer__menuInner { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .footer__menuInner .sub-menu { margin-top: 12px; gap: 9px; }
    .footer__socialIcons { flex-wrap: wrap; gap: 10px; }
    .footer__socialText { width: 100%; margin: 0 0 4px; }
    .footer__app { gap: 10px; }
    .footer__appTitle { width: 100%; }
    .footer__app_google, .footer__app_apple { width: calc(50% - 5px); max-width: 140px; height: 40px; }
    .footer__partners { gap: 18px; }
    .footer__partner { max-height: 26px; width: auto; }
    .footer__disclaimer { font-size: .72rem; line-height: 1.8; }
}
