:root {
    --landing-ink: #0b1326;
    --landing-muted: #5d687c;
    --landing-navy: #07142f;
    --landing-navy-soft: #0d1d42;
    --landing-surface: #ffffff;
    --landing-surface-soft: #f4f7fb;
    --landing-line: rgba(12, 31, 66, 0.1);
    --landing-accent: #f67458;
    --landing-accent-hover: #ff866d;
    --landing-blue: #5a7cff;
    --landing-cyan: #56d7ee;
    --landing-radius-sm: 14px;
    --landing-radius-md: 22px;
    --landing-radius-lg: 32px;
    --landing-shadow-sm: 0 14px 40px rgba(20, 38, 78, 0.08);
    --landing-shadow-lg: 0 32px 90px rgba(3, 13, 38, 0.28);
}

body {
    background: var(--landing-surface-soft);
    color: var(--landing-ink);
    font-family: "Segoe UI Variable Text", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    text-rendering: optimizeLegibility;
}

main.landing-v2 {
    animation: none;
    background: var(--landing-surface);
    opacity: 1;
    overflow: hidden;
}

.landing-v2 .container-cust {
    margin: 0 auto !important;
    padding-bottom: clamp(76px, 8vw, 118px) !important;
    padding-top: clamp(76px, 8vw, 118px) !important;
}

.landing-v2 .landing-section {
    scroll-margin-top: 96px;
}

.landing-v2 .h2 {
    color: var(--landing-ink);
    font-size: clamp(2.25rem, 4vw, 3.55rem);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.landing-v2 .h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.5;
}

.landing-v2 .text_body {
    font-size: 1.02rem;
    line-height: 1.62;
}

.landing-v2 a,
.landing-v2 button,
header a,
footer a {
    transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.landing-v2 a:focus-visible,
.landing-v2 button:focus-visible,
header a:focus-visible,
header button:focus-visible,
footer a:focus-visible {
    outline: 3px solid rgba(86, 215, 238, 0.75);
    outline-offset: 4px;
}

/* Homepage header */
header {
    background: rgba(7, 20, 47, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#navbar {
    background: transparent !important;
    min-height: 82px;
}

#navbar .container-fluid {
    max-width: 1320px !important;
    padding-left: 22px;
    padding-right: 22px;
}

.navbar-brand img {
    height: auto;
    max-width: 186px;
}

#navbar .navbar-nav {
    align-items: center;
    gap: 5px;
}

#navbar .nav-link {
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.96rem;
    font-weight: 500;
    padding: 11px 13px;
    position: relative;
}

#navbar .nav-link:hover,
#navbar .nav-link.active {
    color: #ffffff;
}

#navbar .nav-link.active::after {
    background: linear-gradient(90deg, var(--landing-accent), var(--landing-cyan));
    border-radius: 999px;
    bottom: 4px;
    content: "";
    height: 2px;
    left: 13px;
    position: absolute;
    right: 13px;
}

#SearchIcon {
    opacity: 0.82;
}

#SearchIcon:hover {
    opacity: 1;
}

#search-block {
    background: rgba(9, 24, 55, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--landing-radius-sm);
    box-shadow: var(--landing-shadow-lg);
    padding: 12px;
}

#search-block .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

header .button__create-sm,
header .mobile-link {
    background: var(--landing-accent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(246, 116, 88, 0.2);
    color: #fff;
    font-weight: 650;
    letter-spacing: 0.01em;
    padding: 11px 20px;
    text-transform: none;
}

header .button__create-sm:hover,
header .mobile-link:hover {
    background: var(--landing-accent-hover);
    box-shadow: 0 14px 30px rgba(246, 116, 88, 0.28);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero */
.landing-v2 #home {
    background:
        radial-gradient(circle at 76% 24%, rgba(90, 124, 255, 0.24), transparent 30%),
        radial-gradient(circle at 20% 18%, rgba(86, 215, 238, 0.1), transparent 28%),
        linear-gradient(135deg, #06112a 0%, #081744 56%, #0b1a42 100%) !important;
    isolation: isolate;
    margin-bottom: 0 !important;
    min-height: min(850px, calc(100vh - 82px));
    padding: clamp(70px, 8vw, 118px) 0 !important;
    position: relative;
}

.landing-v2 #home::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
    opacity: 0.55;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.landing-v2 #home::after {
    background: var(--landing-accent);
    border-radius: 50%;
    content: "";
    filter: blur(120px);
    height: 180px;
    opacity: 0.12;
    pointer-events: none;
    position: absolute;
    right: 8%;
    top: 22%;
    width: 180px;
    z-index: -1;
}

.landing-hero__grid {
    align-items: center;
    min-height: 590px;
    row-gap: 54px;
}

.landing-hero__content {
    align-content: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 !important;
    padding-right: clamp(20px, 5vw, 78px);
}

.landing-eyebrow {
    align-items: center;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.09em;
    margin-bottom: 25px;
    padding: 9px 13px;
    text-transform: uppercase;
}

.landing-eyebrow::before {
    background: var(--landing-cyan);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(86, 215, 238, 0.78);
    content: "";
    height: 7px;
    margin-right: 9px;
    width: 7px;
}

.landing-v2 .main__info_h1 {
    color: #ffffff;
    font-size: clamp(3.25rem, 6.2vw, 5.8rem);
    font-weight: 650;
    letter-spacing: -0.062em;
    line-height: 0.98;
    max-width: 760px;
    padding: 0 0 30px;
    text-wrap: balance;
}

.landing-hero__lead {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 1.45vw, 1.18rem) !important;
    line-height: 1.6 !important;
    max-width: 660px;
}

.landing-hero__support {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
    margin-top: 18px !important;
    max-width: 640px;
}

.landing-hero__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.landing-v2 .button__create,
.landing-v2 .button__sample,
.landing-v2 .button__ghost {
    align-items: center;
    border-radius: 13px;
    display: inline-flex;
    font-size: 0.94rem;
    font-weight: 650;
    justify-content: center;
    letter-spacing: 0.01em;
    min-height: 52px;
    padding: 14px 23px;
    text-transform: none;
}

.landing-v2 .button__create {
    background: var(--landing-accent);
    border: 1px solid var(--landing-accent);
    box-shadow: 0 16px 34px rgba(246, 116, 88, 0.23);
    color: #ffffff;
}

.landing-v2 .button__create:hover {
    background: var(--landing-accent-hover);
    border-color: var(--landing-accent-hover);
    box-shadow: 0 20px 40px rgba(246, 116, 88, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.landing-v2 .button__ghost {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.landing-v2 .button__ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: translateY(-2px);
}

.landing-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 29px;
}

.landing-hero__proof span {
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 550;
}

.landing-hero__proof span:not(:last-child)::after {
    color: rgba(86, 215, 238, 0.75);
    content: "·";
    margin-left: 9px;
}

.landing-hero__visual {
    margin: 0 !important;
    padding: 24px 14px 24px 38px;
    perspective: 1300px;
}

.landing-hero__screen {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: var(--landing-shadow-lg);
    padding: 22px;
    position: relative;
    transform: rotateY(-4deg) rotateX(1deg);
}

.landing-hero__screen::before,
.landing-hero__screen::after {
    border-radius: 30px;
    content: "";
    inset: -1px;
    pointer-events: none;
    position: absolute;
}

.landing-hero__screen::before {
    background: linear-gradient(135deg, rgba(86, 215, 238, 0.2), transparent 34%, transparent 70%, rgba(246, 116, 88, 0.18));
    z-index: -1;
}

.landing-hero__screen::after {
    box-shadow: 0 0 90px rgba(90, 124, 255, 0.15);
}

.landing-hero__screen img {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.23);
    display: block;
    height: auto;
}

.landing-hero__screen-label {
    align-items: center;
    background: rgba(7, 20, 47, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 650;
    left: 42px;
    padding: 8px 12px;
    position: absolute;
    top: 42px;
    z-index: 2;
}

.landing-hero__screen-label::before {
    background: #59d88b;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(89, 216, 139, 0.65);
    content: "";
    height: 7px;
    margin-right: 8px;
    width: 7px;
}

/* Exchange integrations */
.landing-exchanges {
    background: var(--landing-surface);
}

.landing-exchanges .info__h2 {
    margin-bottom: 40px !important;
    max-width: 780px;
}

.landing-exchanges .gallery {
    margin: 0 -10px !important;
    padding-bottom: 38px;
}

.landing-exchanges .gallery-cell {
    padding: 8px;
}

.landing-exchanges .info_card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid var(--landing-line);
    border-radius: 19px;
    box-shadow: none;
    gap: 16px;
    height: 108px;
    margin: 0;
    min-width: 250px;
    padding: 24px;
    width: 250px;
}

.landing-exchanges .info_card:hover {
    border-color: rgba(90, 124, 255, 0.28);
    box-shadow: var(--landing-shadow-sm);
    transform: translateY(-3px);
}

.landing-exchanges .info_card_img img {
    height: 38px;
    max-width: 58px;
}

.landing-exchanges .info_card__title {
    color: var(--landing-ink);
    font-size: 1.05rem;
    font-weight: 620;
}

.landing-exchanges .flickity-page-dots .dot,
.landing-news .flickity-page-dots .dot {
    background: rgba(11, 19, 38, 0.18);
    height: 6px;
    margin: 0 5px;
    opacity: 1;
    width: 6px;
}

.landing-exchanges .flickity-page-dots .dot.is-selected,
.landing-news .flickity-page-dots .dot.is-selected {
    background: var(--landing-blue);
    border-radius: 999px;
    width: 22px;
}

/* Feature grid */
.landing-features {
    background: var(--landing-surface-soft);
}

.landing-features .opportunities__wrapper_info {
    align-items: end;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    margin-bottom: 46px;
}

.landing-features .opportunities__h2,
.landing-features .opportunities__body {
    max-width: none;
    width: auto;
}

.landing-features .opportunities__body {
    color: var(--landing-muted);
    justify-self: end;
    max-width: 480px;
}

.landing-features .row {
    margin-left: -10px;
    margin-right: -10px;
}

.landing-features .row > div {
    padding: 10px !important;
}

.landing-features .opportunity_card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-md);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    flex-direction: column;
    gap: 25px;
    min-height: 284px;
    padding: 32px;
}

.landing-features .opportunity_card:hover {
    border-color: rgba(90, 124, 255, 0.25);
    box-shadow: var(--landing-shadow-sm);
    transform: translateY(-4px);
}

.landing-features .opportunities__img {
    background: linear-gradient(145deg, rgba(90, 124, 255, 0.1), rgba(86, 215, 238, 0.08));
    border: 1px solid rgba(90, 124, 255, 0.1);
    border-radius: 16px;
    height: 68px;
    object-fit: contain;
    padding: 12px;
    width: 68px;
}

.landing-features .opportunity_card .h4 {
    color: var(--landing-ink);
    font-size: 1.2rem;
    font-weight: 650;
    line-height: 1.25;
    margin-bottom: 10px !important;
}

.landing-features .opportunity_card .text_body {
    color: var(--landing-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

/* Mid-page CTA */
.landing-cta {
    background: var(--landing-surface);
}

.landing-cta__panel {
    background:
        radial-gradient(circle at 15% 20%, rgba(86, 215, 238, 0.14), transparent 27%),
        radial-gradient(circle at 88% 18%, rgba(246, 116, 88, 0.2), transparent 25%),
        linear-gradient(135deg, var(--landing-navy) 0%, #0b1d4c 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--landing-radius-lg);
    box-shadow: var(--landing-shadow-lg);
    color: #fff;
    overflow: hidden;
    padding: clamp(44px, 7vw, 78px);
    position: relative;
}

.landing-cta__panel::after {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
    height: 330px;
    position: absolute;
    right: -95px;
    top: -180px;
    width: 330px;
}

.landing-cta .feedback__info {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    max-width: none;
    text-align: left;
}

.landing-cta .h2 {
    color: #fff;
    max-width: 850px;
}

.landing-cta .text_body {
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.08rem;
    max-width: 640px;
}

.landing-cta .button__create {
    margin-top: 8px;
}

/* Product showcase */
.landing-product {
    background: var(--landing-surface);
}

.landing-product .statistics {
    align-items: center;
    background:
        radial-gradient(circle at 80% 30%, rgba(90, 124, 255, 0.08), transparent 34%),
        linear-gradient(180deg, #f8faff, #f1f5fb);
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-lg);
    gap: clamp(30px, 5vw, 78px) !important;
    overflow: hidden;
    padding: clamp(36px, 6vw, 72px);
}

.landing-product .statistic__info {
    flex: 1 1 420px;
}

.landing-product .statistic__text {
    color: var(--landing-muted);
    margin-top: 24px !important;
    max-width: 520px;
}

.landing-product .statistic__img {
    background: #ffffff;
    border: 1px solid rgba(12, 31, 66, 0.1);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(25, 49, 98, 0.18);
    flex: 1 1 460px;
    height: auto;
    max-width: 570px;
    transform: rotate(1.3deg);
    width: min(100%, 570px);
}

/* Pricing */
.landing-pricing {
    background: var(--landing-surface-soft);
}

.landing-pricing .tariff__header {
    gap: 17px;
    margin-bottom: 45px;
}

.landing-pricing .tariff__h2 {
    color: var(--landing-muted);
    max-width: 720px;
    padding: 0;
}

.landing-pricing .row {
    align-items: stretch;
    margin-left: -10px;
    margin-right: -10px;
}

.landing-pricing .row > div {
    display: flex;
    padding: 10px !important;
}

.landing-pricing .tariff_card {
    background: #fff;
    border: 1px solid var(--landing-line);
    border-radius: 25px;
    box-shadow: none;
    margin: 0;
    max-width: none;
    min-height: 610px;
    padding: 44px 38px 38px;
    position: relative;
}

.landing-pricing .tariff_card:hover {
    border-color: rgba(90, 124, 255, 0.28);
    box-shadow: var(--landing-shadow-sm);
    transform: translateY(-4px);
}

.landing-pricing .tariff_card__premium {
    background:
        radial-gradient(circle at 70% 10%, rgba(90, 124, 255, 0.22), transparent 30%),
        linear-gradient(155deg, #07142f, #0c2053);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 70px rgba(7, 20, 47, 0.2);
    color: #ffffff;
}

.landing-pricing .tariff_card__title {
    gap: 8px;
    padding-bottom: 26px;
}

.landing-pricing .tariff_card__title .h2 {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.landing-pricing .tariff_card__premium .h2,
.landing-pricing .tariff_card__premium .price,
.landing-pricing .tariff_card__premium .caption-big,
.landing-pricing .tariff_card__premium .text_body {
    color: #ffffff;
}

.landing-pricing .tariff_card__premium .premium__h2 {
    color: var(--landing-accent);
}

.landing-pricing .price {
    color: var(--landing-ink);
    font-size: 2.8rem;
    font-weight: 650;
    letter-spacing: -0.04em;
}

.landing-pricing .caption-big {
    color: var(--landing-ink);
    font-size: 1.22rem;
    font-weight: 620;
    line-height: 1.35;
}

.landing-pricing .tariff_card__info {
    align-items: stretch;
    gap: 14px;
    padding: 25px 0 34px;
    text-align: left;
    width: 100%;
}

.landing-pricing .tariff_card__info .text_body {
    align-items: flex-start;
    color: var(--landing-muted);
    display: flex;
    font-size: 0.94rem;
    line-height: 1.42;
}

.landing-pricing .tariff_card__info .text_body::before {
    align-items: center;
    background: rgba(90, 124, 255, 0.1);
    border-radius: 50%;
    color: var(--landing-blue);
    content: "✓";
    display: inline-flex;
    flex: 0 0 19px;
    font-size: 0.73rem;
    font-weight: 800;
    height: 19px;
    justify-content: center;
    margin-right: 10px;
    margin-top: 1px;
}

.landing-pricing .tariff_card__premium .tariff_card__info .text_body {
    color: rgba(255, 255, 255, 0.72);
}

.landing-pricing .tariff_card__premium .tariff_card__info .text_body::before {
    background: rgba(86, 215, 238, 0.13);
    color: var(--landing-cyan);
}

.landing-pricing .button__sample,
.landing-pricing .button__create {
    margin-top: auto;
    width: 100%;
}

.landing-pricing .button__sample {
    background: #fff;
    border: 1px solid rgba(12, 31, 66, 0.16);
    color: var(--landing-ink);
}

.landing-pricing .button__sample:hover {
    background: var(--landing-navy);
    border-color: var(--landing-navy);
    color: #fff;
    transform: translateY(-2px);
}

/* Video */
.landing-video {
    background: var(--landing-surface);
}

.landing-video__inner {
    margin: 0;
}

.landing-video .tariff__h2 {
    color: var(--landing-muted);
    margin: 16px auto 40px !important;
    max-width: 740px;
    padding: 0;
}

.landing-video .s-video-bg {
    border: 1px solid var(--landing-line);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(16, 37, 82, 0.18);
    margin: 0 auto;
    overflow: hidden;
}

.landing-video .s-video-bg::after {
    background: rgba(7, 20, 47, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(7, 20, 47, 0.3);
    color: #fff;
    content: "▶";
    font-size: 1.45rem;
    height: 78px;
    left: 50%;
    line-height: 78px;
    padding-left: 5px;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
}

.landing-video .s-video-bg img {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    transition: transform 400ms ease, filter 400ms ease;
}

.landing-video .s-video-bg:hover img {
    filter: brightness(0.92);
    transform: scale(1.018);
}

/* News */
.landing-news {
    background: var(--landing-surface-soft);
    max-width: none;
}

.landing-news > div:first-child {
    margin-bottom: 38px !important;
}

.landing-news > div:first-child > span {
    color: var(--landing-muted);
    display: inline-block;
    margin-top: 16px !important;
}

.landing-news .gallery {
    padding-bottom: 42px;
}

.landing-news .gallery-cell {
    min-width: 320px;
    padding: 9px;
    width: 390px;
}

.landing-news .news_body__card {
    background: #fff;
    border: 1px solid var(--landing-line);
    border-radius: 21px;
    box-shadow: none;
    height: 450px;
    margin: 0;
    overflow: hidden;
    text-align: left;
}

.landing-news .news_body__card:hover {
    border-color: rgba(90, 124, 255, 0.26);
    box-shadow: var(--landing-shadow-sm);
    transform: translateY(-3px);
}

.landing-news .news_body__card img {
    display: block;
    height: 205px;
    object-fit: cover;
    width: 100%;
}

.landing-news .news_body__card_info {
    gap: 13px;
    padding: 22px 22px 24px;
}

.landing-news .news_body__card .caption-small {
    color: var(--landing-muted);
    font-size: 0.76rem;
}

.landing-news .news_body__card .caption-big {
    font-size: 1.22rem;
    font-weight: 650;
    line-height: 1.35;
}

.landing-news .news_body__card .caption-big,
.landing-news .news_body__card .text_body {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.landing-news .news_body__card .caption-big {
    -webkit-line-clamp: 2;
}

.landing-news .news_body__card .text_body {
    color: var(--landing-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
}

/* FAQ */
.landing-faq {
    background: var(--landing-surface);
    max-width: none;
}

.landing-faq > .row {
    align-items: end;
    margin: 0 auto;
    max-width: 1320px;
}

.landing-faq > .row > div {
    color: var(--landing-muted);
    font-size: 1rem !important;
}

.landing-faq > .d-flex {
    margin: 46px auto 0 !important;
    max-width: 1320px;
}

.landing-faq .accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-faq .accordion-item {
    border: 1px solid var(--landing-line);
    border-radius: 18px !important;
    box-shadow: none;
    overflow: hidden;
}

.landing-faq .accordion-header {
    border: 0;
}

.landing-faq .accordion-button {
    background: #fff;
    box-shadow: none;
    color: var(--landing-ink);
    font-size: 1.08rem;
    font-weight: 630 !important;
    line-height: 1.4;
    padding: 24px 26px;
}

.landing-faq .accordion-button:not(.collapsed) {
    background: #f8faff;
    color: var(--landing-ink);
}

.landing-faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(90, 124, 255, 0.18);
}

.landing-faq .accordion-body {
    background: #f8faff;
    color: var(--landing-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    padding: 0 26px 26px;
}

.landing-faq .accordion-body span[style] {
    background: rgba(90, 124, 255, 0.1) !important;
    border-radius: 6px;
    color: var(--landing-ink) !important;
    font-weight: 650;
    padding: 2px 6px !important;
}

/* Final CTA and contact form */
.landing-final {
    background: var(--landing-surface-soft);
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.landing-final__panel {
    background:
        radial-gradient(circle at 20% 10%, rgba(86, 215, 238, 0.15), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(246, 116, 88, 0.18), transparent 30%),
        linear-gradient(135deg, #07142f, #0a1e4c);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--landing-radius-lg);
    box-shadow: var(--landing-shadow-lg);
    color: #fff;
    overflow: hidden;
    padding: clamp(48px, 7vw, 82px);
}

.landing-final .h2 {
    color: #fff;
}

.landing-final__lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 18px auto 34px !important;
    max-width: 660px;
    text-align: center;
}

.landing-final .exchange__btns {
    gap: 14px;
    margin-bottom: 0;
}

.landing-final .button__sample {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.landing-final .button__sample:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.landing-form {
    background: #fff;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-md);
    box-shadow: var(--landing-shadow-lg);
    color: var(--landing-ink);
    padding: 28px;
}

.landing-form .form-label,
.landing-form label {
    font-weight: 620;
    margin-bottom: 8px;
}

.landing-form .form-control {
    background: #f7f9fc;
    border: 1px solid rgba(12, 31, 66, 0.13);
    border-radius: 12px;
    min-height: 48px;
}

.landing-form .form-control:focus {
    background: #fff;
    border-color: var(--landing-blue);
    box-shadow: 0 0 0 4px rgba(90, 124, 255, 0.12);
}

.landing-form .form-text {
    color: var(--landing-muted);
}

.landing-form .dark_btn {
    background: var(--landing-navy);
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-weight: 650;
    min-width: 150px;
}

.landing-form .dark_btn:hover {
    background: var(--landing-navy-soft);
}

/* Homepage footer */
footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(90, 124, 255, 0.1), transparent 28%),
        #050f28;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

footer .container-xl {
    max-width: 1320px;
    padding-bottom: 42px !important;
    padding-top: 74px !important;
}

footer .footer-block img {
    max-width: 185px;
}

footer .footer-block p,
footer .copyright-text p {
    color: rgba(255, 255, 255, 0.48) !important;
    line-height: 1.65;
}

footer h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

footer .fw-link a {
    color: rgba(255, 255, 255, 0.58);
    display: inline-block;
    padding: 5px 0;
}

footer .fw-link a:hover {
    color: #fff;
    transform: translateX(2px);
}

footer .footer_btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    color: #fff;
    font-weight: 650;
    text-transform: none;
}

footer .footer_btn:hover {
    background: var(--landing-accent);
    border-color: var(--landing-accent);
}

footer .copyright-text img {
    opacity: 0.66;
    transition: opacity 180ms ease, transform 180ms ease;
}

footer .copyright-text a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

.top-button {
    background: rgba(7, 20, 47, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.17);
    bottom: 22px;
    box-shadow: 0 14px 34px rgba(7, 20, 47, 0.25);
    height: 52px;
    left: 22px;
    padding: 3px;
    width: 52px;
    z-index: 20;
}

.top-button:hover {
    background: var(--landing-accent);
    transform: translateY(-3px);
}

.top-button img {
    height: 100%;
    width: 100%;
}

@media (max-width: 1199.98px) {
    .landing-v2 .main__info_h1 {
        font-size: clamp(3.1rem, 6vw, 4.8rem);
    }

    .landing-hero__visual {
        padding-left: 20px;
    }

    .landing-pricing .tariff_card {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 991.98px) {
    #navbar {
        min-height: 62px;
    }

    #navbar .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .navbar-brand img {
        max-width: 166px;
    }

    #navbar .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 11px;
        box-shadow: none;
        padding: 8px 10px;
    }

    #navbar .navbar-collapse {
        background: rgba(7, 20, 47, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 16px;
        box-shadow: var(--landing-shadow-lg);
        margin-top: 8px;
        padding: 14px;
    }

    #navbar .navbar-nav {
        align-items: stretch;
    }

    #navbar #SearchIcon {
        padding-bottom: 3px !important;
        padding-top: 3px !important;
    }

    #navbar #Languages.dropdown {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    #navbar .nav-link.active::after {
        display: none;
    }

    #navbar .nav-link.active {
        background: rgba(255, 255, 255, 0.07);
    }

    .landing-v2 #home {
        min-height: auto;
        padding-top: 82px !important;
    }

    .landing-v2 .landing-section {
        scroll-margin-top: 72px;
    }

    .landing-hero__grid {
        min-height: 0;
    }

    .landing-hero__content {
        padding-right: 12px;
    }

    .landing-hero__visual {
        display: block;
        padding: 0 12px;
    }

    .landing-hero__screen {
        margin: 0 auto;
        max-width: 760px;
        transform: none;
    }

    .landing-features .opportunities__wrapper_info {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .landing-features .opportunities__body {
        justify-self: start;
        max-width: 680px;
    }

    .landing-product .statistics {
        flex-direction: column;
    }

    .landing-product .statistic__info,
    .landing-product .statistic__img {
        flex-basis: auto;
    }

    .landing-pricing .tariff_card {
        min-height: 580px;
    }

    .landing-faq > .d-flex {
        justify-content: stretch !important;
    }

    .landing-faq .accordion {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .landing-v2 .container-cust {
        padding-bottom: 74px !important;
        padding-top: 74px !important;
    }

    .landing-v2 .h2 {
        font-size: clamp(2.15rem, 9vw, 3rem);
        line-height: 1.08;
    }

    .landing-v2 #home {
        padding-bottom: 76px !important;
        padding-top: 74px !important;
    }

    .landing-eyebrow {
        font-size: 0.68rem;
        margin-bottom: 21px;
    }

    .landing-v2 .main__info_h1 {
        font-size: clamp(3rem, 13vw, 4.25rem) !important;
        line-height: 0.98 !important;
        padding-bottom: 25px;
    }

    .landing-hero__support {
        font-size: 0.92rem !important;
    }

    .landing-hero__screen {
        border-radius: 22px;
        padding: 14px;
    }

    .landing-hero__screen-label {
        left: 25px;
        top: 25px;
    }

    .landing-exchanges .info__h2 {
        margin-bottom: 28px !important;
    }

    .landing-features .opportunities__wrapper_info {
        gap: 22px;
        margin-bottom: 30px;
    }

    .landing-features .opportunity_card {
        min-height: 260px;
        padding: 28px;
    }

    .landing-cta__panel,
    .landing-final__panel,
    .landing-product .statistics {
        border-radius: 24px;
    }

    .landing-product .statistic__img {
        transform: none;
    }

    .landing-pricing .tariff_card {
        min-height: 0;
    }

    .landing-video .s-video-bg {
        border-radius: 20px;
    }

    .landing-video .s-video-bg::after {
        font-size: 1.1rem;
        height: 60px;
        line-height: 60px;
        width: 60px;
    }

    .landing-faq > .row > div {
        margin-top: 18px;
    }

    .landing-faq .accordion-button {
        font-size: 1rem;
        padding: 20px;
    }

    .landing-faq .accordion-body {
        padding: 0 20px 22px;
    }

    footer .container-xl {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 575.98px) {
    .landing-v2 .container-xxl,
    .landing-v2.container-xxl {
        padding-left: 18px;
        padding-right: 18px;
    }

    .landing-v2 .main__info_h1 {
        font-size: clamp(2.75rem, 13vw, 3.65rem) !important;
    }

    .landing-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-hero__actions .button__create,
    .landing-hero__actions .button__ghost {
        width: 100%;
    }

    .landing-hero__proof {
        gap: 7px;
    }

    .landing-hero__proof span {
        font-size: 0.72rem;
    }

    .landing-hero__visual {
        padding: 0;
    }

    .landing-hero__screen-label {
        font-size: 0.67rem;
    }

    .landing-exchanges .gallery-cell {
        width: calc(100vw - 56px);
    }

    .landing-exchanges .info_card {
        min-width: 0;
        width: 100%;
    }

    .landing-features .opportunity_card {
        gap: 20px;
        min-height: 0;
        padding: 25px;
    }

    .landing-cta__panel,
    .landing-final__panel {
        padding: 38px 24px;
    }

    .landing-product .statistics {
        padding: 30px 24px;
    }

    .landing-pricing .tariff_card {
        padding: 36px 28px 30px;
    }

    .landing-news .gallery-cell {
        min-width: 280px;
        width: calc(100vw - 40px);
    }

    .landing-news .news_body__card {
        height: 440px;
    }

    .landing-final {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .landing-final .exchange__btns {
        align-items: stretch;
    }

    .landing-final .button__create,
    .landing-final .button__sample {
        width: 100%;
    }

    .landing-form {
        padding: 22px;
    }

    .top-button {
        bottom: 18px;
        height: 46px;
        left: 16px;
        width: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
