/* Regular */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Italic */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Light Italic */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Extra Light */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Extra Light Italic */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* SemiBold */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* SemiBold Italic */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-SemiboldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Bold Italic */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Black Italic */
@font-face {
    font-family: "Source Sans Pro";
    src: url("../fonts/SourceSansPro-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}


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

:root {
    /* Fonts */
    --font-base: "Source Sans Pro", sans-serif;
    --font-alt: "Arial", sans-serif;

    /* Base Colors */
    --color-white: #fff;
    --color-white-soft: #fdfdfd;
    --color-text: #dadada;
    --color-text-muted: rgba(255, 255, 255, 0.3);

    /* Brand Colors */
    --color-primary-lightest: #f7faff;
    --color-primary-lighter: #f2f7ff;
    --color-primary-light: #d1e2fd;
    --color-primary: #4287f5;
    --color-primary-dark: #1b70f1;
    --color-primary-darker: #1151b6;

    --color-accent: #9ac321;

    /* Backgrounds */
    --bg-main: #131517;
    --bg-surface: #1e1f25;
    --bg-surface-alt: #272a34;
    --bg-overlay: #141e2f;

    /* Neutral Palette */
    --color-grey-100: #f9f9fa;
    --color-grey-200: #eceef0;
    --color-grey-300: #dee1e5;
    --color-grey-400: #cfd3da;
    --color-grey-500: #bfc4cd;
    --color-grey-600: #adb3bf;
    --color-grey-700: #98a0af;
    --color-grey-800: #808a9a;
    --color-grey-900: #7e8184;
    --color-grey-1000: #54576d;

    /* Feedback Colors */
    --color-success: #06b470;
    --color-success-bg: #f1fcd3;

    --color-error: #f74e2c;
    --color-error-bg: #ffe8d5;

    --color-warning: #ffba3a;
    --color-warning-bg: #fff6d7;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-width: 320px;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: var(--font-base);
    background-color: var(--bg-main);
}

img {
    max-width: 100%;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 4px;
    padding: 13px 26px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-family: var(--font-base), serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: white;
    white-space: nowrap;
    transition: .2s linear;
    max-width: max-content;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background-color: var(--color-primary-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-darker);
    transition: .2s linear;
}

.btn-outline {
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    border: 1px solid var(--color-primary);
}

.btn-outline:hover svg path {
    fill: var(--color-primary);
    transition: .2s linear;
}

.btn-transparent:hover {
    color: var(--color-primary);;
}

.common-title {
    font-weight: 700;
    font-size: clamp(32px, 5vw, 58px);
    color: var(--color-white);
}

.common-text {
    font-weight: 400;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 156%;
    text-align: center;
    color: var(--color-grey-600);
}

.common-border-bottom {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.container {
    max-width: 1620px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* header */
.header {
    padding: 20px 0;
    background-color: var(--bg-surface);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav .header-nav-list {
    padding: 8px 18px;
    display: flex;
    gap: 30px;
}

.header-nav .header-nav-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: var(--color-grey-600);
}

.header-nav .header-nav-link:hover {
    color: var(--color-primary-dark);
    transition: .2s linear;
}

.header-auth {
    display: flex;
    gap: 10px;
}

.burger {
    display: none;
}

/* mobile-menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #1e1f25;
    transition: .2s linear;
}

.mobile-menu.opened {
    display: block;
}

.mobile-menu .header-nav {
    display: block;
}

.mobile-menu .header-nav-list {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-menu .cross {
    width: 30px;
    position: absolute;
    top: 26px;
    right: 10px;
}

.mobile-menu .header-nav-link {
    font-size: 20px;
}

.mobile-menu .lang-select {
    display: block;
    margin: 0 auto;
}

/* hero */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background-position: center bottom;
    background-image: url("../images/hero-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero .hero-content {
    max-width: 912px;
}

.hero .hero-subtitle {
    position: relative;
    padding-left: 50px;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.hero .hero-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary-dark);
    border-radius: 10px;
}

.hero .hero-title {
    font-weight: 700;
    font-size: clamp(48px, 5vw, 96px);
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 30px;
}

.hero-title span {
    position: relative;
    white-space: nowrap;
}

.hero-title span::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(118, 148, 36, 0.6) 10%,
    rgba(118, 148, 36, 0.6) 90%,
    transparent 100%);
}

.hero .hero-text {
    font-weight: 400;
    font-size: clamp(14px, 5vw, 20px);
    line-height: 160%;
    color: var(--color-grey-600);
}

.hero .hero-buttons {
    display: flex;
    gap: 30px;
}

/* form */
.hero-form {
    max-width: 500px;
    width: 100%;
    padding: 32px 40px;
    background-color: var(--bg-surface-alt);
    border-radius: 10px;
}

.hero-form-title {
    font-size: 32px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 20px;
}

.hero-form .form-input {
    padding: 12px 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid var(--color-grey-500);
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.hero-form .form-input:focus {
    outline: 2px solid rgba(66, 135, 245, 0.3);
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-form .form-input::placeholder {
    color: var(--color-grey-500);
}

.form-agreement {
    margin-top: 10px;
    font-size: 13px;
    color: var(--color-grey-800);
}

.form-agreement a {
    color: var(--color-primary-dark);
}

#registerForm form:invalid button {
    background: #5a5a5a;
    opacity: 0.8;
    cursor: not-allowed;
    transition: none;
    transform: none;
    box-shadow: none;
    color: #fff;
}

/* hero-ticker */
.hero-ticker {
    padding-top: 100px;
}

.hero-ticker .ticker-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 40px;
    width: max-content;
}

.hero-ticker .ticker-item {
    position: relative;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.hero-ticker .ticker-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 1px;
    height: 40px;
    background-color: var(--color-white);
    opacity: .2;
    transform: translateY(-50%);
}

.hero-ticker .ticker-item-head {
    display: flex;
    align-items: center;
}

.hero-ticker .ticker-pair {
    max-width: 86px;
    width: 100%;
    min-width: 86px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-grey-600);
    white-space: nowrap;
}

.hero-ticker .ticker-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    white-space: nowrap;
}

.hero-ticker .ticker-change.up {
    color: var(--color-success);
}

.hero-ticker .ticker-change.down {
    color: var(--color-error);
}

.hero-ticker .ticker-price {
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    color: var(--color-white);
    white-space: nowrap;
}

/* market-trends */
.market-trends {
    padding: 60px 0;
}

.market-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-border-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.1) 90%,
    transparent 100%);
}

.market-trends .nav-list {
    display: flex;
    gap: 34px;
}

.market-trends .nav-link {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: var(--color-grey-600);
    cursor: pointer;
}

.market-trends .nav-link:hover {
    color: var(--color-primary);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-gap: 30px;
    margin-bottom: 60px;
}

.market-card {
    border: 2px solid var(--bg-surface);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
}

.market-card-header {
    text-align: center;
}

.market-icon {
    margin-bottom: 20px;
}

.market-pair {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 10px;
}

.market-change {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 20px;
}

.market-change.up {
    color: var(--color-success);
}

.market-change.down {
    color: var(--color-error);
}

.market-price {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 20px;
}

.market-actions {
    display: flex;
    justify-content: center;
}

/* how-it-works */
.how-it-works {
    padding: 120px 0;
    background-color: var(--bg-surface);
    background-image: url("../images/second-bg.png");
    background-position: center;
    background-size: cover;
}

.how-it-works-header {
    max-width: 1050px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-title {
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
    background-color: var(--bg-surface-alt);
}

.step-icon {
    margin-bottom: 40px;
}

.step-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: var(--color-white);
    margin-bottom: 20px;
}

.step-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-grey-600);
    margin-bottom: 40px;
}

.step-card .btn {
    font-size: 16px;
    margin: 0 auto;
}

/* why-choose */
.why-choose {
    padding-top: 120px;
    padding-bottom: 60px;
}

.why-choose-header {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.why-choose-title {
    margin-bottom: 30px;
}

.why-choose-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.why-choose-list {
    max-width: 675px;
    width: 100%;
}

.why-choose-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose-item:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.why-choose-item:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%
    );
}

.why-choose-number {
    font-weight: 400;
    font-size: 58px;
    color: var(--bg-surface-alt);
}

.why-choose-body {
    max-width: 438px;
}

.why-choose-subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: var(--color-grey-600);
    margin-bottom: 12px;
}

.why-choose-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-grey-800);
}

.why-choose-item .btn {
    padding: 10px 18px;
    font-size: 18px;
}

.why-choose-image {
    max-width: 780px;
    width: 100%;
}

/* testimonials */
.testimonials {
    padding: 120px 0;
    background-color: var(--bg-surface);
    background-image: url("../images/second-bg.png");
    background-size: cover;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.testimonials-title {
    max-width: 645px;
}

.testimonials-text {
    max-width: 675px;
    text-align: left;
}

.testimonials-slider .swiper-wrapper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    background-color: var(--color-grey-600);
    border-radius: 0;
}

.testimonial-card {
    padding: 40px 30px;
    background-color: var(--bg-surface-alt);
    border-radius: 10px;
}

.testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    color: var(--color-white);
}

.testimonial-meta {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--color-grey-500);
}

.testimonial-text {
    font-weight: 400;
    font-size: clamp(16px, 5vw, 24px);
    line-height: 150%;
    color: var(--color-white);
}

/* app-download */
.app-download {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url('../images/app-download.png');
    background-position: center right;
    background-size: 1000px, contain;
    background-repeat: no-repeat;
}

.app-download-wrap {
    padding-bottom: 90px;
    max-width: 780px;
    width: 100%;
}

.app-download-title {
    margin-bottom: 30px;
}

.app-download-text {
    text-align: left;
}

.app-download-actions {
    margin-top: 80px;
    display: flex;
    gap: 30px;
}

/* faq */
.faq {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../images/second-bg.png");
    background-position: center;
    background-size: cover;
}

.faq-header {
    text-align: center;
}

.faq-title {
    margin-bottom: 30px;
}

.faq-content .accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.accordion-item {
    border-radius: 4px;
    padding: 20px;
    border: 1px solid rgba(126, 129, 132, 0.3);
    height: max-content;
}

.accordion-header {
    position: relative;
    padding-right: 44px;
}

.accordion-header button {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
}

.accordion-icon {
    position: absolute;
    top: 10px;
    right: 0;
    width: 18px;
    min-width: 18px;
}

.accordion-question {
    font-weight: 600;
    font-size: clamp(20px, 5vw, 24px);
    line-height: 150%;
    color: var(--color-white);
}

.accordion-content {
    padding-top: 20px;
    padding-right: 44px;
    font-weight: 400;
    font-size: clamp(14px, 5vw, 18px);
    line-height: 156%;
    color: var(--color-grey-600);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.accordion-panel[hidden] {
    display: none !important;
}

.accordion-trigger {
    text-align: left;
}

.accordion-trigger.is-open .accordion-icon {
    transform: rotate(45deg);
    transition: transform .2s;
}

/* how-it-works */
.about {
    padding: 120px 0;
    background-position: center;
    background-size: cover;
}

.about-header {
    max-width: 1050px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-title {
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.about-info {
    max-width: 800px;
}

.about-info-title {
    font-weight: 700;
    font-size: clamp(20px, 5vw, 38px);
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.about-info-text {
    font-weight: 400;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 156%;
    color: var(--color-grey-600);
    text-align: left;
    margin-top: 30px;
}

.about-info-image {
    max-width: 800px;
}

.about-info-image img {
    border-radius: 10px;
}

/* period */
.period {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../images/second-bg.png");
    background-position: center;
    background-size: cover;
}

.period-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 40px;
}

.period .item-details {
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.period .item-text {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.period .item-description {
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--color-grey-600);
}

/* investment */
.investment {
    padding-top: 120px;
    padding-bottom: 120px;
}

.investment-title {
    text-align: center;
    margin-bottom: 30px;
}

.investment-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 60px;
}

.investment .btn-primary {
    max-width: max-content;
    margin: 0 auto;
}

/* contact */
.contact {
    padding: 120px 0;
}

.contact-header {
    text-align: center;
}

.contact-title {
    margin-bottom: 30px;
}

.contact-form {
    max-width: 900px;
    width: 100%;
    padding: 32px 40px;
    background-color: var(--bg-surface-alt);
    border-radius: 10px;
    margin: 0 auto;
}

.contact-form-text {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .form-input {
    padding: 12px 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-white);
    background-color: var(--bg-surface);
    background-clip: padding-box;
    border: 1px solid var(--bg-surface);
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form .form-input:focus {
    outline: 2px solid rgba(66, 135, 245, 0.3);
}

.contact-form textarea {
    min-height: 250px;
    resize: vertical;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form form label {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--color-white);
}

.contact-form .form-input::placeholder {
    color: var(--color-grey-500);
}

.formwrap-outer .intgrtn-form-signup .intgrtn-form-signup-3-steps .intgrtn-btn-go-to-step, .formwrap-outer .intgrtn-form-signup .intgrtn-form-signup-3-steps .intgrtn-btn-submit, .formwrap-outer .intgrtn-form-signup .intgrtn-form-signup .intgrtn-btn-go-to-step, .formwrap-outer .intgrtn-form-signup .intgrtn-form-signup .intgrtn-btn-submit, .formwrap-outer .intgrtn-form-signup .intgrtn-form-optin .intgrtn-btn-go-to-step, .formwrap-outer .intgrtn-form-signup .intgrtn-form-optin .intgrtn-btn-submit {
    background-color: var(--color-primary) !important;
}

/* footer */
.footer {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--bg-surface);
    background-image: url("../images/footer-bg.png");
    background-size: cover;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer .community {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer .community-label {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: var(--color-white);
}

.footer .social {
    display: flex;
    gap: 30px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer .social-link:hover svg path {
    fill: var(--color-primary);
    transition: .2s linear;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-links .column-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    color: var(--color-white);
    margin-bottom: 20px;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-list .link,
.social-link.icon-gamepad {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-grey-600);
    cursor: pointer;
}

.link-list .link:hover,
a.footer-text:hover,
.social-link.icon-gamepad:hover {
    color: var(--color-primary);
    transition: .2s linear;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 46px;
}

a.footer-text {
    cursor: pointer;
}

.footer-text {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-white);
}

.footer-text:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -28px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-grey-800);
    transform: translateY(-50%);
}

/* privacy-policy */
.privacy-policy {
    padding: 120px 0;
}

.privacy-policy .contact-title {
    text-align: center;
}

.privacy-policy-content p {
    font-weight: 400;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 156%;
    color: var(--color-grey-600);
    margin-bottom: 20px;
}

.privacy-policy-content h3 {
    font-weight: 700;
    font-size: clamp(24px, 5vw, 32px);
    color: var(--color-white);
    margin-bottom: 30px;
}

.privacy-policy-content h4 {
    font-weight: 700;
    font-size: clamp(20px, 5vw, 24px);
    color: var(--color-white);
    margin-bottom: 20px;
}

/* terms */
.terms {
    padding: 120px 0;
}

.terms .contact-title {
    text-align: center;
}

.terms-content p {
    font-weight: 400;
    font-size: clamp(16px, 5vw, 18px);
    line-height: 156%;
    color: var(--color-grey-600);
    margin-bottom: 20px;
}

.terms-content h3 {
    font-weight: 700;
    font-size: clamp(24px, 5vw, 32px);
    color: var(--color-white);
    margin-bottom: 30px;
}

.terms-content h4 {
    font-weight: 700;
    font-size: clamp(20px, 5vw, 24px);
    color: var(--color-white);
    margin-bottom: 20px;
}

@media (pointer: coarse) {
    .hero-ticker {
        scroll-snap-type: x proximity;
    }

    .hero-ticker .ticker-item {
        scroll-snap-align: start;
    }
}

@media screen and (max-width: 1920px) {
    .app-download {
        background-size: 50%, contain;
    }
}

@media screen and (max-width: 1620px) {
    .market-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-download-wrap {
        max-width: 520px;
    }
}

@media screen and (max-width: 1023px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .common-border-bottom {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .market-trends .nav {
        display: none;
    }

    .why-choose-content {
        flex-direction: column-reverse;
    }

    .why-choose-image {
        max-width: 400px;
    }

    .testimonials-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-text {
        text-align: center;
    }

    .app-download {
        padding-top: 60px;
        background-size: 380px;
        background-position: bottom 100px right;
        padding-bottom: 380px;
    }

    .app-download-wrap {
        padding-bottom: 0;
    }

    .faq {
        padding-top: 0;
    }

    .faq-content .accordion {
        grid-template-columns: 1fr;
    }

    .about, .investment, .contact, .privacy-policy, .terms {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column-reverse;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer .social {
        gap: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer .community-label {
        font-size: 18px;
    }

    .footer-links .column {
        width: 130px;
    }
}

@media screen and (max-width: 768px) {
    /* header */
    .header {
        padding: 10px 0;
    }

    .burger {
        max-width: 28px;
        display: flex;
    }

    /* hero */
    .hero {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .header-nav, .lang-select {
        display: none;
    }

    .hero .burger {
        display: block;
    }

    .hero-ticker {
        padding-top: 60px;
    }

    .why-choose-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-choose-item:not(:last-child) {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .why-choose-item .btn {
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .period-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 20px;
    }

    .market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-text:not(:last-child)::before {
        right: 50%;
        top: auto;
        bottom: -28px;
    }
}

@media screen and (max-width: 425px) {
    .hero .hero-subtitle {
        padding-left: 30px;
    }

    .hero .hero-subtitle::before {
        width: 26px;
    }

    .hero-form, .contact-form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .app-download-actions {
        flex-direction: column;
    }

    .market-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));;
    }
}

.splide__list {
    height: max-content;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 20px;
}

td {
    padding: 12px 4px;
    border-bottom: 1px solid var(--color-grey-600);
}

tr:last-child td {
    border-bottom: none;
}

.form-message {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    background: #e6ffed;
    color: #046c4e;
    text-align: center;
    font-size: 14px;
}

.form-message.show {
    display: block;
}

/* flags */
.lang-select {
    position: relative;
    width: 260px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.lang-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .6rem;
    border: 1px solid var(--bg-surface-alt);
    border-radius: 6px;
    background: var(--bg-main);
    color: var(--color-white);
    cursor: pointer;
}

.lang-btn .flag {
    font-size: 18px;
}

.lang-btn .label {
    flex: 1;
}

.lang-btn .chevron {
    color: var(--color-primary-dark)
}

.lang-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    border: 1px solid var(--bg-surface-alt);
    border-radius: 6px;
    background: var(--bg-main);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    padding: .25rem 0;
    margin: 0;
    list-style: none;
    max-height: 280px;
    overflow: auto;
    display: none;
    z-index: 10;
}

.lang-select:hover .lang-menu {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .6rem;
    cursor: pointer;
    white-space: nowrap;
}

.lang-option .flag {
    font-size: 18px;
}

.lang-option:hover {
    background: var(--bg-surface-alt);
}
