:root {
    --color-bg: #f4f7ff;
    --color-surface: #ffffff;
    --color-surface-soft: #eef3ff;
    --color-surface-strong: #dce5ff;
    --color-primary: #628CFF;
    --color-primary-dark: #3f5be0;
    --color-primary-light: #6c8fff;
    --color-accent: #8eaaff;
    --color-text: #161c3d;
    --color-text-muted: #586694;
    --color-border: #d8e1ff;
    --color-border-strong: #b9c7f4;
    --shadow-lg: 0 24px 60px rgba(68, 102, 225, 0.18);
    --shadow-md: 0 16px 38px rgba(68, 102, 225, 0.14);
    --shadow-sm: 0 10px 24px rgba(68, 102, 225, 0.12);
    --radius-xxl: 40px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition: all 0.25s ease;
    --font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
        url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Bold'), local('Montserrat-Bold'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Light'), local('Montserrat-Light'),
        url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff'),
        url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserra-Medium.eot');
    src: local('Montserrat Medium'), local('Montserrat-Medium'),
        url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff'),
        url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
        url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

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

html,
body {
    padding: 0;
    margin: 0;
}

body {
    background: #FFF;
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
    overflow: hidden;
}


input,
input::placeholder {
    font-family: var(--font-family);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 16px;
}

.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.site-main {
    position: relative;
    z-index: 1;
}

.fw-section {
    padding: 96px 0;
}

.fw-section--top-tight {
    padding-top: 48px;
}

.fw-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.fw-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.fw-title {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
}

.fw-description {
    margin: 24px auto 0;
    max-width: 720px;
    font-size: 18px;
    color: var(--color-text-muted);
}

.fw-text-muted {
    color: var(--color-text-muted);
}

.fw-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-surface-soft);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fw-grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

.fw-grid--cols-auto {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fw-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(76, 110, 245, 0.08);
    transition: var(--transition);
}

.fw-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.fw-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(76, 110, 245, 0.1), rgba(76, 110, 245, 0.32));
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
}

.fw-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}

.fw-card__text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 16px;
}

.fw-card__list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.fw-card__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

.fw-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: 0 4px 10px rgba(76, 110, 245, 0.4);
}

.fw-card--accent {
    background: linear-gradient(135deg, #5d7bff, #5979ff 45%, #688eff);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg);
}

.fw-card--accent .fw-card__text {
    color: rgba(255, 255, 255, 0.86);
}

.fw-card--compact {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.fw-card--ghost {
    background: transparent;
    border: 1px solid rgba(76, 110, 245, 0.12);
    box-shadow: none;
}

.fw-card--ghost:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 22px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    color: inherit;
    transition: var(--transition);
    position: relative;
    height: 48px;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(76, 110, 245, 0.12);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    /* box-shadow: 0 16px 30px rgba(76, 110, 245, 0.28); */
}

.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #FFFFFF;
    color: #628CFF;
}

.btn--outline {
    border: 1px solid rgba(76, 110, 245, 0.4);
    color: var(--color-primary);
}

.btn--ghost {
    background: rgba(76, 110, 245, 0.1);
    color: var(--color-primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(244, 247, 255, 0.85);
    border-bottom: 1px solid rgba(76, 110, 245, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.site-header__logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(140deg, #5f82ff, #4c6ef5);
    position: relative;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(76, 110, 245, 0.35);
}

.site-header__logo-icon::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.site-header__logo-text span {
    color: var(--color-primary);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.site-nav__list li {
    position: relative;
}


.site-nav__list .menu-item a {
    color: #151821;
}

.site-nav__list a {
    display: inline-flex;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item>a,
.site-nav__list .current_page_item>a {
    color: var(--color-primary);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__lang {
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #151821;
    display: flex;
}

.site-header__lang-text {
    cursor: pointer;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.lang-dropdown {
    position: absolute;
    display: none;
    flex-direction: column;
    background-color: #FFF;
    border-radius: 16px;
    padding: 10px;
    gap: 5px;
    top: 130%;
    width: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.lang-dropdown.active {
    display: flex;
}

.site-header__burger {
    display: none;
}

.site-header__mobile {
    display: none;
    border-top: 1px solid rgba(76, 110, 245, 0.12);
    background: hsla(0, 0%, 100%, 0.96);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.site-header__mobile-inner {
    padding: 20px 24px 32px;
    display: grid;
    gap: 18px;
}

.site-header__mobile.is-open {
    display: block;
}

.site-header__mobile-menu {
    display: grid;
    gap: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.site-header__mobile-menu a {
    padding: 10px 0;
}

.site-header__mobile-actions {
    display: grid;
    gap: 12px;
}

.hero {
    position: relative;
    padding: 120px 0 80px;
}

.hero__inner {
    display: grid;
    gap: 40px;
}

.hero__header {
    max-width: 760px;
}

.hero__title {
    font-size: clamp(42px, 6vw, 58px);
    line-height: 1.05;
    margin: 12px 0 24px;
}

.hero__description {
    font-size: 20px;
    max-width: 620px;
    color: var(--color-text-muted);
}

.hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero__cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero__cards .fw-card {
    height: 100%;
}

.fw-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fw-list li {
    margin-bottom: 8px;
    padding-left: 26px;
    position: relative;
    color: var(--color-text-muted);
}

.fw-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    box-shadow: 0 6px 16px rgba(76, 110, 245, 0.4);
}

.fw-feature-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fw-feature-grid .fw-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.fw-feature-grid .fw-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

.fw-split {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.fw-split__aside {
    position: relative;
}

.fw-split__aside::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(76, 110, 245, 0.12), transparent);
    z-index: -1;
}

.fw-split__aside .fw-card {
    height: 100%;
}

.fw-faq-table {
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.fw-faq-table__row {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 24px;
    padding: 32px 36px;
    border-bottom: 1px solid rgba(76, 110, 245, 0.08);
}

.fw-faq-table__row:last-child {
    border-bottom: none;
}

.fw-faq-table__question {
    font-weight: 700;
    font-size: 18px;
}

.fw-faq-table__answer {
    color: var(--color-text-muted);
    font-size: 16px;
}

.fw-accordion {
    display: grid;
    gap: 16px;
}

.fw-accordion__item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(76, 110, 245, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fw-accordion__trigger {
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
}

.fw-accordion__trigger-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(76, 110, 245, 0.14);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: transform 0.25s ease;
}

.fw-accordion__content {
    display: none;
    padding: 0 24px 24px;
    color: var(--color-text-muted);
}

.fw-accordion__item.is-open .fw-accordion__content {
    display: block;
}

.fw-accordion__item.is-open .fw-accordion__trigger-icon {
    transform: rotate(45deg);
}

.fw-step-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    text-align: center;
}

.fw-step {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.fw-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8L20 16L12 24' stroke='%234C6EF5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    transform: translateY(-50%);
    opacity: 0.4;
}

.fw-step:last-child::after {
    display: none;
}

.fw-step__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(76, 110, 245, 0.12), rgba(76, 110, 245, 0.3));
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700;
}

.fw-step__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.fw-step__text {
    color: var(--color-text-muted);
}

.fw-cta {
    background: linear-gradient(135deg, #5c7fff, #4c6ef5 55%, #4161f2);
    color: #fff;
    padding: 54px 58px;
    border-radius: var(--radius-xxl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(66, 98, 238, 0.35);
}

.fw-cta::before,
.fw-cta::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(0);
    border-radius: 44% 56% 60% 40% / 48% 44% 56% 52%;
}

.fw-cta::before {
    top: -60px;
    right: 120px;
}

.fw-cta::after {
    bottom: -70px;
    right: -40px;
}

.fw-cta__title {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 12px;
    font-weight: 700;
}

.fw-cta__subtitle {
    font-size: 18px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.86);
}

.fw-cta__form {
    display: grid;
    gap: 14px;
    max-width: 440px;
}

.fw-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.fw-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.fw-cta__meta {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.fw-cta__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fw-cta__tag {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--color-surface-soft);
    color: var(--color-primary);
    font-weight: 600;
}

.fw-badge--ghost {
    background: transparent;
    border: 1px solid rgba(76, 110, 245, 0.16);
}

.site-footer {
    padding: 80px 0 40px;
    background: #f0f3ff;
    border-top: 1px solid rgba(101, 128, 241, 0.2);
    color: var(--color-text-muted);
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.site-footer_col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 18px;
}

.site-footer__list {
    display: grid;
    gap: 10px;
    padding: 0;
}

.site-footer__title {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 18px;
    font-size: 16px;
}

.site-footer__bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(76, 110, 245, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.fw-tagline {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(76, 110, 245, 0.14);
    color: var(--color-primary);
    font-weight: 600;
}

.fw-highlight-card {
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 18px;
}

.fw-highlight-card--accent {
    background: linear-gradient(140deg, #668cff, #4c6ef5 65%, #3855db);
    color: #fff;
    border: none;
}

.fw-highlight-card--accent .fw-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.fw-bird-card {
    display: grid;
    gap: 20px;
    background: linear-gradient(145deg, #ffffff, #e9efff);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.fw-bird-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top, rgba(76, 110, 245, 0.28), transparent 70%);
    right: -40px;
    bottom: -40px;
}

.fw-table {
    width: 100%;
    border-collapse: collapse;
}

.fw-table th,
.fw-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(76, 110, 245, 0.1);
    text-align: left;
}

.fw-table th {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.fw-table tbody tr:hover {
    background: rgba(76, 110, 245, 0.04);
}

.fw-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(76, 110, 245, 0.1);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

.fw-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

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

.fw-columns__group {
    display: grid;
    gap: 16px;
}

.fw-mini-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.fw-mini-card__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.fw-mini-card__text {
    color: var(--color-text-muted);
}

.fw-logo-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    align-items: center;
}

.fw-logo-grid__item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px rgba(76, 110, 245, 0.08);
}

.fw-inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.fw-inline-links a::after {
    content: '↗';
    margin-left: 6px;
    font-size: 13px;
    opacity: 0.6;
}

.fw-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(76, 110, 245, 0.12);
    display: grid;
    place-items: center;
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 700;
}

.fw-muted {
    color: var(--color-text-muted);
}

.fw-divider {
    height: 1px;
    background: rgba(76, 110, 245, 0.08);
    margin: 40px 0;
}

.fw-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fw-bento__wide {
    grid-column: span 2;
}

.fw-bento__tall {
    grid-row: span 2;
}

.fw-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fw-chip-list .fw-chip {
    background: rgba(76, 110, 245, 0.1);
    color: var(--color-primary);
}

.fw-section--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(215, 225, 255, 0.58));
}

.fw-section--accent {
    background: linear-gradient(160deg, rgba(76, 110, 245, 0.12), rgba(76, 110, 245, 0));
}

.fw-bullet-table {
    display: grid;
    gap: 18px;
}

.fw-bullet-table__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
}

.fw-bullet-table__title {
    font-weight: 700;
    color: var(--color-text);
}

.fw-bullet-table__text {
    color: var(--color-text-muted);
}

.fw-side-cta {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #6789ff, #4c6ef5 55%, #4161f2);
    color: #fff;
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 16px;
}

.fw-side-cta::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
    right: -40px;
    bottom: -40px;
}

.fw-side-cta__title {
    font-weight: 700;
    font-size: 22px;
}

.fw-side-cta__text {
    color: rgba(255, 255, 255, 0.82);
}

.fw-metric {
    display: grid;
    gap: 12px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.fw-metric__value {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-primary);
}

.fw-metric__label {
    color: var(--color-text-muted);
}

.fw-floating-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.fw-floating-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(76, 110, 245, 0.12), transparent);
    pointer-events: none;
}

.fw-marker {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.fw-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.fw-stats__item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.fw-stats__value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.fw-stats__label {
    color: var(--color-text-muted);
}

.fw-mosaic {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
}

.fw-mosaic__col {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 18px;
}

.fw-mosaic__col--4 {
    grid-column: span 4;
}

.fw-mosaic__col--6 {
    grid-column: span 6;
}

.fw-mosaic__col--8 {
    grid-column: span 8;
}

.fw-mosaic__col--12 {
    grid-column: span 12;
}

.fw-kv {
    display: grid;
    gap: 10px;
}

.fw-kv__label {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.fw-kv__value {
    font-weight: 700;
    font-size: 20px;
}

.fw-labeled {
    display: grid;
    gap: 10px;
    padding: 24px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.fw-labeled__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.fw-labeled__value {
    font-size: 20px;
    font-weight: 700;
}

.fw-hint {
    font-size: 14px;
    color: var(--color-text-muted);
}

@media (max-width: 1200px) {
    .fw-mosaic {
        grid-template-columns: repeat(6, 1fr);
    }

    .fw-mosaic__col--8,
    .fw-mosaic__col--12 {
        grid-column: span 6;
    }

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

    .site-footer__brand {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .fw-section {
        padding: 72px 0;
    }

    .site-header__inner {
        gap: 16px;
    }

    .site-nav {
        display: none;
    }

    .site-footer .site-nav {
        display: flex;
    }

    .site-header__burger {
        display: flex;
        flex-direction: column;
        gap: 3.5px;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border: none;
        outline: none;
        align-items: center;
        justify-content: center;
        background: #F5F7FF;
    }

    .site-header__burger span {
        width: 20px;
        height: 3px;
        border-radius: 30px;
        background: #628CFF;
        transition: .4s transform;
    }

    .is-menu-open .site-header__burger span:nth-child(2) {
        display: none;
    }

    .is-menu-open .site-header__burger span:nth-child(1) {
        transform: rotate(45deg);
    }

    .is-menu-open .site-header__burger span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .is-menu-open .site-header__burger span {
        position: absolute;
    }

    .fw-grid--cols-4,
    .fw-step-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fw-faq-table__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fw-cta {
        padding: 48px 36px;
    }

    .fw-mosaic {
        grid-template-columns: repeat(4, 1fr);
    }

    .fw-mosaic__col--6 {
        grid-column: span 4;
    }

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

@media (max-width: 768px) {
    .container {
        width: min(100%, calc(100% - 32px));
    }

    .site-header__inner {
        padding: 18px 0;
    }

    .hero {
        padding: 96px 0 64px;
    }

    .fw-section {
        padding: 64px 0;
    }

    .fw-grid--cols-3,
    .fw-grid--cols-4,
    .fw-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fw-columns,
    .fw-columns--3,
    .fw-split {
        grid-template-columns: 1fr;
    }

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

    .fw-cta {
        border-radius: var(--radius-xl);
    }

    .fw-cta__form {
        max-width: 100%;
    }

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

    .site-footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {

    .fw-grid--cols-2,
    .fw-grid--cols-3,
    .fw-grid--cols-4,
    .fw-feature-grid,
    .fw-step-flow,
    .fw-bento,
    .fw-stats {
        grid-template-columns: 1fr;
    }

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

    .fw-cta {
        padding: 42px 28px;
    }

    .fw-cta::before,
    .fw-cta::after {
        display: none;
    }

    .fw-faq-table__row {
        padding: 24px 20px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: span 1;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

color: #7D7E85;
transition: .4s background,
.4s color;
}

.tab-box .btn.active {
    background: var(--choose);
    color: var(--titles);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 16px 0;
    background: var(--background);
    backdrop-filter: blur(8px);
}

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

.site-title {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    padding: 24px 0 32px;
    overflow: hidden;
    padding-top: 100px;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.logo {
    transition: .4s opacity;
}

.logo:hover {
    opacity: .7;
}

.top-links {
    display: inline-flex;
    gap: 16px;
    margin-top: 8px;
}

.top-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid transparent;
    padding-bottom: 8px;
    transition: .4s color, .4s border;
}

.top-links a:hover {
    color: var(--titles);
    border-color: var(--accent);
}

.top-controls {
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
}

.hero-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin: 8px 0 8px;
    text-align: center;
    color: var(--titles);
}

.hero-sub {
    color: var(--text);
    text-align: center;
    max-width: 784px;
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
    margin: 0 auto;
}

.search {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
    align-items: center;
    background: var(--inputs);
    border-radius: 16px;
    padding: 12px 8px;
    max-width: 624px;
    margin: 0 auto;
    margin-top: 40px;
}

.search-input {
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--titles);
    font-size: 15px;
}

.search-wrapper {
    position: relative;
    max-width: 624px;
    margin: 40px auto 0;
}

.search-wrapper .search {
    margin-top: 0;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--inputs);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    z-index: 20;
    display: none;
}

.search-results.is-visible {
    display: block;
}

.search-results__list {
    list-style: none;
    margin: 0;
    padding: 16px;
}

.search-results__item:not(:last-child) {
    border-bottom: 1px solid var(--choose);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.search-results__item:hover .search-results__thumb {
    opacity: .7;
}

.search-results__item:hover .search-results__title {
    color: var(--accent);
}

.search-results__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-decoration: none;
    color: var(--titles);
}

.search-results__info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-results__thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s opacity;
}

.search-results__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-results__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition: .4s color;
}

.search-results__empty,
.search-results__error {
    padding: 18px;
    font-size: 14px;
    color: rgba(248, 250, 252, 0.85);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.chips {
    display: flex;
    justify-content: center;
    padding: 16px 0 10px;
    margin: 0;
    list-style: none;
}

.chips li {
    position: relative;
}

.chips li:after {
    content: '•';
    font-size: 16px;
    margin: 0 8px;
    color: var(--accent);
}

.chips li:last-child:after {
    display: none;
}

.chips a {
    display: inline-block;
    color: var(--titles);
    font-weight: 500;
    text-decoration: none;
    transition: .4s color;
}

.chips a:hover {
    color: var(--accent);
}

.hero-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px 0 0;
    justify-content: center;
    max-width: 944px;
    margin: 0 auto;
    margin-top: 80px;
}

.hero-benefits li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--inputs);
    color: var(--titles);
    line-height: 24px;
    max-width: 306px;
    width: 100%;
    font-weight: 500;
}

.hero-benefits p {
    margin: 0;
}

.hero-benefits li .icon {
    min-width: 48px;
    height: 48px;
    align-items: center;
    display: flex;
}

.glow {
    position: absolute;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 50vw;
    height: 300px;
    z-index: -1;
}

.glow-1 {
    background-image: url(../img/bg/main-1.png);
    top: 0;
    right: 0;
}

.glow-2 {
    background-image: url(../img/bg/main-2.png);
    top: -110px;
    left: -380px;
    height: 457px;
    width: 692px;
}

.glow-3 {
    background-image: url(../img/bg/main-3.png);
    bottom: 160px;
    right: -320px;
    width: 610px;
    height: 480px;
}

.glow-4 {
    background-image: url(../img/bg/main-4.png);
    top: -140px;
    width: 460px;
    height: 460px;
    left: -350px;
}

.glow-5 {
    background-image: url(../img/bg/main-5.png);
    top: -100px;
    width: 700px;
    height: 470px;
    right: -340px;
}

.glow-6 {
    background-image: url(../img/bg/main-6.png);
    top: -100px;
    width: 760px;
    height: 660px;
    left: -380px;
}

.glow-7 {
    background-image: url(../img/bg/main-7.png);
    bottom: 340px;
    width: 513px;
    height: 513px;
    right: -430px;
}

.glow-8 {
    background-image: url(../img/bg/main-8.png);
    top: 0;
    width: 672px;
    height: 672px;
    left: -430px;
}

.glow-9 {
    background-image: url(../img/bg/main-9.png);
    bottom: 0;
    right: -110px;
}

/* Sections */
.section {
    padding-top: 100px;
    position: relative;
}

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

.section-actions {
    position: relative;
}

.section h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: var(--titles);
}

.section-foot {
    display: grid;
    place-items: center;
    margin-top: 40px;
}

/* Promo */

.promo-card {
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    background: var(--inputs);
    padding-bottom: 40px;
    display: block;
    transition: .4s opacity;
}

.promo-card:hover {
    opacity: .7;
}

.promo-media {
    min-height: 160px;
    position: relative;
}

.promo-body {}

.promo h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: var(--titles);
}

.promo p {
    margin: 0;
    margin-top: 8px;
    font-size: 20px;
    color: var(--subtext);
}

/* Benefit cards (wide row) */
.benefit-cards__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-card {
    background-color: var(--inputs);
    border-radius: 24px;
    padding: 18px;
    position: relative;
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
}

.benefit-card:nth-child(1) {
    background-image: url(../img/bg/yellow.svg);
}

.benefit-card:nth-child(2) {
    background-image: url(../img/bg/green.svg);
}

.benefit-card:nth-child(3) {
    background-image: url(../img/bg/purple.svg);
}

.benefit-card_thumb {
    margin-bottom: -40px;
}

.benefit-card__title {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    margin-bottom: 4px;
    color: var(--titles);
}

.benefit-card__desc {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
}

/* Products */

.product-grid {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.product-card {
    position: relative;
    display: grid;
    place-items: center;
    gap: 12px;
    text-align: center;
    align-items: flex-start;
}

.product-card:hover .product-card_thumb {
    opacity: .7;
}

.product-card:hover .product-card_title {
    color: var(--accent);
}

.product-card_thumb {
    max-width: 144px;
    max-height: 144px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transition: .4s opacity;
}

.product-card_thumb img {
    width: 100%;
    height: auto;
}

.product-card_title {
    font-weight: 500;
    color: var(--titles);
    font-size: 16px;
    transition: .4s color;
}

.product-thumb {
    background: linear-gradient(180deg, #26313a, #192128);
}

.product-body {
    padding: 12px;
    display: grid;
    gap: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price .price {
    font-weight: 700;
}

.product-price .badge {
    background: rgba(34, 197, 94, .15);
    color: #7ef5b2;
    border: 1px solid rgba(34, 197, 94, .35);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 12px;
}

.product-title {
    font-size: 14px;
    margin: 0;
}

.product-meta {
    color: var(--text);
    font-size: 12px;
}

/* Dropdown */
.dropdown {
    position: absolute;
    margin-top: 8px;
    right: 0;
    background: #0F0F11;
    border: 1px solid #2a2a2f;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: .16s ease;
    z-index: 20;
}

.dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 180px;
}

.dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--titles);
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--inputs);
}

/* Loading state for AJAX grids */
[data-ajax-list] {
    position: relative;
}

[data-ajax-list].is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    border-radius: 16px;
    backdrop-filter: blur(2px);
}

/* Games */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-card {
    color: var(--titles);
}

.game-card_thumb {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.game-card_thumb img {
    width: 100%;
}

.game-card_badge {
    position: absolute;
    bottom: 15px;
    left: 10px;
    background: var(--accent);
    border-radius: 17px;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 16px;
}

.game-card_body {}

.game-card_price {}

.game-card_price .price {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.game-card_price .old-price {
    font-size: 16px;
    color: var(--subtext);
    text-decoration: line-through;
    margin-left: 8px;
}

.game-card_title {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

/* USP */
.usp h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 40px;
    color: var(--titles);
}

.usp-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background: var(--inputs);
    background-image: url(../img/feature-bg.svg);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
}

.usp-icon {
    display: grid;
    place-items: center;
}

.usp-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--titles);
}

.usp-desc {
    color: var(--text);
    font-size: 16px;
    line-height: 24px;
}

/* Footer base tweaks */
.site-footer {
    position: relative;
    background: transparent;
    margin-top: 100px;
}

.footer {
    border-top: 1px solid var(--choose);
    padding: 40px 0;
}

.site-footer .container {
    padding: 16px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu_item {}

.footer-menu_item-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--subtext);
}

.footer-menu_item a {
    text-decoration: none;
    color: var(--titles);
    font-weight: 500;
}

.site-footer p {
    margin: 0;
}

.footer-link,
.site-footer__list .menu-item a {
    color: var(--subtext);
    text-decoration: none;
    transition: .4s opacity;
}

.footer-link:hover,
.site-footer__list .menu-item a:hover {
    opacity: .7;
}

.footer-temp-privacy .footer-link {
    color: var(--titles);
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.footer-social {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--inputs);
    width: 40px;
    height: 40px;
    transition: .4s background;
}

.footer-social:hover {
    background: var(--accent-3);
}

.section-topup {
    position: relative;
}

.footer-menus {
    display: flex;
    gap: 16px;
}

.footer-menu {
    min-width: 144px;
}

.footer-menu a {
    color: var(--titles);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: .4s color;
}

.footer-menu a:hover {
    color: var(--accent);
}

.footer-menu li {
    margin-bottom: 16px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}


/* icons */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-search {
    background-image: url(../img/icons/icon-search.svg);
}

.icon-lang {
    background-image: url(../img/icons/icon-lang.svg);
}

.icon-currency {
    background-image: url(../img/icons/icon-currency.svg);
}

.icon-chevron-down {
    background-image: url(../img/icons/icon-chevron-down.svg);
}

.icon-chevron-right {
    background-image: url(../img/icons/icon-chevron-right.svg);
}

.icon-vk {
    background-image: url(../img/icons/icon-vk.svg);
}

.icon-youtube {
    background-image: url(../img/icons/icon-youtube.svg);
}

.icon-tg {
    background-image: url(../img/icons/icon-tg.svg);
}

.icon-whatsapp {
    background-image: url(../img/icons/icon-whatsapp.svg);
}

.icon-info {
    background-image: url(../img/icons/icon-info.svg);
    transition: .4s opacity;
}

.icon-info:hover {
    opacity: .7;
}

.icon-safe {
    width: 40px;
    height: 40px;
    background-image: url(../img/icons/icon-safe.svg);
}

.icon-arrows {
    background-image: url(../img/icons/icon-arrows.svg);
    min-width: 24px;
}

.icon-coins {
    background-image: url(../img/icons/icon-coins.svg);
}

.icon-steam-others {
    background-image: url(../img/icons/icon-steam-others.svg);
}

.icon-buy-games {
    background-image: url(../img/icons/icon-buy-games.svg);
}

.icon-close {
    background-image: url(../img/icons/icon-close.svg);
}

.icon-success {
    background-image: url(../img/icons/icon-success.svg);
    width: 40px;
    height: 40px;
}

.icon-wing-right {
    background-image: url(../img/icons/icon-wing-right.svg);
    min-width: 56px !important;
    height: 56px !important;
}

.icon-wing-left {
    background-image: url(../img/icons/icon-wing-left.svg);
    min-width: 56px !important;
    height: 56px !important;
}

.icon-wing-white-right {
    background-image: url(../img/icons/icon-wing-white-right.svg);
    min-width: 24px !important;
    height: 24px !important;
}

.icon-wing-white-left {
    background-image: url(../img/icons/icon-wing-white-left.svg);
    min-width: 24px !important;
    height: 24px !important;
}

.icon-arrow-down {
    background-image: url(../img/icons/icon-arrow-down.svg);
    min-width: 20px;
    height: 10px;
}

.icon-chevron-down {
    background-image: url(../img/icons/icon-chevron-down.svg);
    min-width: 8px;
    width: 8px !important;
    height: 8px !important;
}

.product-header {
    background: var(--inputs);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 40px;
}

.product-header_box {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.product-header_content {
    display: flex;
    gap: 24px;
    width: 100%;
    border-right: 1px solid var(--choose);
    padding-right: 24px;
}

.product-header_thumb {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
}

.product-header_thumb img {
    max-width: 100%;
}

.product-header_title {
    font-size: 24px;
    color: var(--titles);
    line-height: 32px;
    font-weight: 600;
    margin: 0;
}

.product-header_description {
    margin-top: 4px;
    font-size: 16px;
    line-height: 24px;
    color: var(--subtext);
}

.product-header_description p {
    margin: 0;
}

.product-header_sold {
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-header_sold-label {}

.product-header_sold-amount {
    font-weight: 600;
    color: var(--titles);
    margin-top: 4px;
}

.topup {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.topup-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.topup-step {
    width: 100%;
}

.topup-sidebar {
    max-width: 304px;
    width: 100%;
}

.topup-sidebar_part:not(:last-child) {
    border-bottom: 1px solid var(--choose);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.topup-sidebar_part .btn-primary {
    background: var(--accent);
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
    color: var(--titles);
}

.topup-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.topup-row:last-child {
    margin-bottom: 0;
}

.topup-sidebar_total {
    color: var(--titles);
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.topup-sidebar_price {}

.topup-sidebar_sale {}

.topup-row .highlight {
    color: var(--accent);
}

.topup-sidebar_safe {
    display: flex;
    gap: 12px;
}

.topup-sidebar_safe .icon {
    min-width: 40px;
}

.topup-sidebar_safe h4 {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--titles);
    font-weight: 600;
}

.topup-sidebar_safe p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.form-field {}

.form-fields_row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.form-field_label {
    font-weight: 600;
    color: var(--titles);
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
}

.form-field_radio {}

.form-field_radio input {
    display: none;
}

.form-field_radio .form-field_text {
    background: var(--inputs);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    transition: .4s background, .4s color;
}

.form-field_radio input:checked+.form-field_text,
.form-field_radio .form-field_text:hover {
    background: var(--choose);
    color: var(--titles);
}

.form-field_text input {
    outline: none;
    border: none;
    background: var(--inputs);
    font-size: 16px;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    color: var(--titles);
}

.form-field_full {
    width: 100%;
    position: relative;
}

.form-field_full .spinner {
    position: absolute;
    left: 12px;
    top: 12px;
}

.form-field_full .load-data {
    text-indent: -9999px;
}

.privacy-policy h1 {
    color: var(--titles);
}

.privacy-policy strong {
    color: var(--titles);
}

.privacy-policy .wp-block-heading {
    color: var(--titles);
}

.privacy-policy .entry-content ul {
    list-style-type: disc;
    margin-left: 30px;
}

.privacy-policy .wp-block-separator {
    margin: 24px 0;
    color: var(--choose);
}

.privacy-policy .entry-content a {
    color: var(--accent);
}

.privacy-policy .entry-content li {
    list-style-type: disc;
}

.popup-overlay {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: popupFade .2s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: var(--inputs);
    border-radius: 24px;
    max-width: 400px;
    width: 100%;
    position: relative;
    padding: 40px;
    text-align: center;
    overflow: scroll;
    max-height: 100vh;
}

.popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: var(--choose);
    width: 32px;
    height: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .4s opacity;
}

.popup__close:hover {
    opacity: .7;
}

.popup .btn {
    background: var(--choose);
    color: var(--titles);
}

.popup .btn:hover {
    background: var(--hover);
    color: var(--titles);
}

.popup__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--titles);
    text-align: left;
    margin-top: 0;
}

.popup__body {
    text-align: left;
}

.popup__body p {
    margin: 0 0 16px;
    color: var(--subtext);
}

.popup__body p:last-child {
    margin-bottom: 0;
}

.popup__body a {
    color: var(--accent);
}

.popup__img img {
    margin: 24px auto;
    display: block;
    max-width: 100%;
}

@keyframes popupFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-field_prices {
    display: flex;
    gap: 8px;
    align-items: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.linethrough {
    text-decoration: line-through;
}

.currency-label {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: default;
    color: var(--titles);
}

/* Responsive */
@media (max-width: 1024px) {
    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-cards__wrap {
        grid-template-columns: 1fr 1fr;
    }

    .hero .hero-top {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        padding-top: 0;
        margin-top: 60px;
    }

    .promo-card {
        grid-template-columns: 1fr;
    }

    .benefit-cards__wrap {
        grid-template-columns: 1fr;
    }

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

    .section-services .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-foot .btn {
        width: 100%;
        max-width: unset;
    }

    .product-card {
        gap: 4px;
    }

    .section {
        padding-top: 80px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .glow-1 {
        top: -110px;
        right: 0px;
        left: auto;
        background-position: top left;
        left: 0;
        background-size: cover;
        width: 100%;
        max-width: 100%;
    }

    .glow-2 {
        height: 730px;
    }

    .glow-4 {
        top: -80px;
        height: 830px;
    }

    .glow-5 {
        top: 40px;
        width: 700px;
        height: 840px;
        right: 0;
    }

    .glow-6 {
        bottom: -70%;
        height: 900px;
    }

    .glow-8 {
        height: 960px;
        bottom: -300px;
        top: auto;
    }

    .chips {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .chips li {
        display: flex;
    }

    .chips li a {
        white-space: nowrap;
    }

    .hero-benefits li {
        max-width: 100%;
    }

    .hero-benefits p {
        max-width: 75%;
    }

    .section-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer .glow,
    .section .glow {
        left: 0;
        width: 100%;
        max-width: 100%;
        background-size: cover;
    }

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

    .hero-top .top-links {
        display: none;
    }

    .promo-media img {
        width: 100%;
    }

    .promo h3 {
        font-size: 24px;
        line-height: 40px;
    }

    .benefit-card:nth-child(1) {
        background-position: left;
    }

    .benefit-card:nth-child(3) {
        background-position: right;
    }

    .section-actions {
        width: 100%;
    }

    .tab-box {
        width: 100%;
    }

    .tab-box .btn {
        width: 100%;
    }

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

    .usp .container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .usp h2 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 16px;
    }

    .site-footer .glow {
        display: none;
    }

    .section-actions .btn {
        width: 100%;
        justify-content: space-between;
    }

    .btn.tab-box_btn {
        justify-content: center;
    }

    .footer {
        padding: 40px 16px;
    }

    .footer-socials {
        padding-top: 24px;
        padding-bottom: 40px;
    }

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

    .footer-menus {
        margin-top: 24px;
    }

    .footer-menu {
        width: 50%;
    }

    .footer-privacy {
        padding-top: 40px;
        border-top: 1px solid var(--choose);
    }

    .footer-privacy p {
        margin-top: 8px;
        color: var(--subtext);
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .topup {
        flex-direction: column;
        gap: 40px;
    }

    .product-header_box {
        justify-content: flex-start;
    }

    .product-header_content {
        width: auto;
    }

    .product-header_title {
        margin-top: 24px;
    }

    .topup-sidebar {
        max-width: unset;
    }
}

/* ===== Order status page ===== */
.order {
    padding: 80px 0;
}

.order__header {
    margin-bottom: 32px;
    background: var(--inputs);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order__header-status {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 4px solid transparent;
}

.order__header-lead {
    margin: 0;
    max-width: 500px;
}

.order__header-box {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    border-right: 1px solid var(--choose);
    padding-right: 24px;
    margin-right: 24px;
}

.order__header-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--titles);
    margin-bottom: 4px;
    margin-top: 0;
}

.order__header-number {
    white-space: nowrap;
}

.order__header-number--label {
    font-size: 16px;
    color: var(--subtext);
}

.order__header-number--id {
    font-weight: 600;
    font-size: 16px;
    color: var(--titles);
}

.order__header-content {}

.order__title {
    font-size: 32px;
    margin-bottom: 8px;
    margin-top: 0;
}

.order__card {
    margin-bottom: 32px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.order__card-info {
    width: 100%;
}

.order__card-info h2 {
    color: var(--titles);
    margin: 0;
    margin-bottom: 24px;
}

.order__lead {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.order__highlights {
    margin: 0 0 24px 0;
    padding-left: 20px;
}

.order__highlights li {
    list-style-type: disc;
}

.order__highlights li+li {
    margin-top: 8px;
}

.order__actions p {
    margin-bottom: 8px;
}

.order__meta {
    padding: 16px 0;
    border-top: 1px solid var(--choose);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
}

.order__meta-label {
    color: var(--subtext);
    font-weight: 400;
    width: 50%;
}

.order__meta-value {
    color: var(--titles);
    font-weight: 500;
    width: 50%;
}

.order__footer {
    text-align: center;
}

.order__not-found {
    text-align: center;
    padding: 60px 32px;
    background: var(--titles);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(24, 26, 36, 0.08);
}

.order__not-found h1 {
    margin-bottom: 12px;
}

.order__not-found p {
    margin-bottom: 24px;
    color: #343848;
}

.order--paid .order__header-status {
    border-color: #17c964;
}

.order--pending .order__header-status {
    border-color: #f5a623;
}

.order--failed .order__header-status {
    border-color: #f53d5c;
}

.order--expired .order__header-status {
    border-color: #9fa6bf;
}

.error404 {
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.error404 .site-main {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.error404 .top-links {
    display: none;
}

.error404 h1 {
    color: var(--titles);
    font-size: 24px;
}


.service-commission {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .order {
        padding: 48px 0;
    }

    .order__title {
        font-size: 26px;
    }

    .order__card-info h2 {
        font-size: 20px;
    }

    .footer-col.text-center {
        text-align: left;
        order: 3;
    }

    /* footer temp */
    .footer-row {
        gap: 16px;
    }

    .order__header-box {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        border: 0;
    }

    .order__header-status-box {
        display: flex;
        align-items: center;
    }

    .order__header-status {
        width: 64px;
        height: 64px;
    }

    .order__header-number {
        border-left: 1px solid var(--choose);
        padding-left: 24px;
        margin-left: 24px;
    }

    .order__card {
        flex-direction: column;
        gap: 40px;
    }

    .order__meta:last-child {
        border-bottom: 1px solid var(--choose);
    }
}






.section-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
    font-size: 32px;
    margin-bottom: 30px;
}

.section-hero {
    padding-top: 100px;
}

.section-hero .section-title {
    font-size: 40px;
}

.section-hero p {
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #647196;
    text-align: center;
}

.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.feature-item {
    background: #F5F7FF;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: calc(33.33% - 20px);
}

.feature-item_icon {
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item_text {
    color: #647196;
    font-size: 16px;
    font-weight: 500;
}

.section-about_box {
    background: #FFFFFF;
    box-shadow: 0px 10px 30px #D6DAE5;
    border-radius: 30px;
    max-width: 1030px;
    width: 100%;
    padding: 50px 60px;
    text-align: center;
    margin: 0 auto;
    margin-top: -60px;
    z-index: 1;
    position: relative;
}

.section-about_box .section-title {
    font-size: 20px !important;
    margin: 0 auto;
    margin-bottom: 30px;
}

.section-title_box {
    display: flex;
    align-items: flex-start;
    max-width: 785px;
    margin: 0 auto;
}

section {
    margin-bottom: 180px;
}

section:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    color: #628CFF;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-row {
    display: flex;
    gap: 20px;
}

.why-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.why-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px #D6DAE5;
    border-radius: 20px;
    max-width: calc(50% - 20px);
}

.why-feature_icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
}

.why-feature_content {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.why-feature_content p {
    margin: 0;
}

.why-cta {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 20px;
    background: #628CFF;
    max-width: 295px;
    width: 100%;
    background-image: url(../img/bird.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.why-cta_title {
    font-weight: 700;
    font-size: 20px;
    color: #FFF;
}

.why-cta p {
    color: #C0D1FF;
    font-size: 16px;
    line-height: 140%;
}

.why-cta .btn {
    margin-top: auto;
}

.payment-groups {
    margin-top: 60px;
}

.payment-group {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #D8DDED;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.payment-group_items {
    display: flex;
    gap: 10px;
}

.payment-group_item {
    background: #F5F7FF;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    min-width: 110px;
}

.payment-group_title {
    max-width: 295px;
    width: 100%;
    font-weight: 700;
    font-size: 20px;
    color: #151821;
}

.payment-banner {
    background: #F5F7FF;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.payment-banner_title {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    color: #151821;
    text-transform: uppercase;

}

.payment-banner_content p {
    color: #647196;
    max-width: 570px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
}

.form-field {
    margin-bottom: 10px;
}

.form-field_text {
    padding: 13px 20px;
    background: #FFFFFF;
    border-radius: 10px;
    color: #647196;
    width: 100%;
    outline: none;
    border: none;
    font-size: 16px;
}

.form-agreement {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #B2BCDA;
}

.form-field_submit {
    margin-top: 20px;
}

.form-field_submit-btn {
    box-shadow: none;
    width: 100%;
}

.form-field_submit-btn:hover {
    transform: none;
}

.form-agreement a {
    text-decoration: underline;
}

.section-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #647196;
    margin-bottom: 60px;
}

.solutions {
    display: flex;
    gap: 20px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 30px;
    gap: 20px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px #D6DAE5;
    border-radius: 30px;
}

.solution-item_content {
    text-align: center;
}

.solution-item_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
}

.solution-item_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

.solution-form {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 20px;
    background: #628CFF;
    max-width: 295px;
    width: 100%;
    position: relative;
}

.solution-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #D8DDED;
}

.solution-features_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.solution-features_part {
    width: 100%;
    padding: 40px;
    gap: 30px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px #D6DAE5;
    border-radius: 30px;
}

.solution-features_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
    margin-bottom: 30px;
}

.solution-features_items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.solution-features_item {
    padding: 10px;
    padding-left: 15px;
    padding-right: 30px;
    border-radius: 16px;
    background: #F5F7FF;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

.solution-features_item .icon {
    min-width: 24px;
}

.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-bird-up {
    background-image: url(../img/icons/wings-up.svg);
}

.icon-bird-flat {
    background-image: url(../img/icons/wings-flat.svg);
}

.icon-bird-down {
    background-image: url(../img/icons/wings-down.svg);
}

.solution-form .btn {
    margin-top: auto;
}

.solution-form_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
}

.solution-form_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #C0D1FF;
}

.section-form_img {
    position: absolute;
    bottom: 80px;
    z-index: 1;
    left: 0;
}


.faq-items {
    display: flex;
    flex-direction: column;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #D8DDED;
    display: flex;
    gap: 40px;
}

.faq-item_question {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
    max-width: 380px;
    width: 100%;
}

.faq-item_answer {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

.contact-features {
    display: flex;
    gap: 10px;
}

.contact-features_item {
    padding: 20px 10px;
    background: #F5F7FF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

.contact-form {
    background: #628CFF;
    padding: 40px;
    padding-bottom: 180px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-form form {
    margin-top: 30px;
}

.contact-form .form-field_text {
    background: #81A3FF;
    color: #C0D1FF;
}

.contact-form input::placeholder,
.contact-form input::-webkit-input-placeholder {
    color: #FFF !important;
    opacity: 1;
}

.row {
    display: flex;
    align-items: flex-start;
}

.dark-bg {
    background: #F5F7FF;
    height: 522px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.section-negative {
    margin-top: -100px;
}

.section-about-hero {
    padding: 100px 0;
}

.section-about-features {
    margin: 0;
    margin-top: -100px;
    margin-bottom: 150px;
}

.section-about-features .why-feature {
    max-width: calc(33.33% - 20px);
    flex-direction: column;
}

.section-about-features .why-feature_title {
    margin-bottom: 10px;
}

.mission {
    background: url(../img/bird-cloud.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 56px;
}

.mission-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #647196;
    max-width: 690px;
}

.mission .section-subtitle {
    text-align: left;
}

.mission-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.mission-feature_item {
    background: #F5F7FF;
    border-radius: 16px;
    padding: 20px 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #647196;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.standart-items {
    display: flex;
    gap: 20px;
}

.standart-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px #D6DAE5;
    border-radius: 20px;
    max-width: calc(33.33% - 20px);
}

.standart-item_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
    margin-top: 30px;
    margin-bottom: 10px;
}

.standart-item_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

.standart-item_features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.standart-item_feature {
    background: #F5F7FF;
    border-radius: 12px;
    padding: 12px 15px;
    padding-right: 30px;
    display: flex;
    gap: 14px;
    font-weight: 500;
    font-size: 16px;
    line-height: 122%;
    color: #647196;
}

.standart-item_feature .icon {
    min-width: 24px;
}

.platform-items {
    display: flex;
    gap: 20px;
}

.platform-item {
    max-width: calc(33.33% - 20px);
    background: #F5F7FF;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.platform-item_icon {
    margin-bottom: 20px;
}

.platform-item_title {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #647196;
}

.contact-form_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-form_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #C0D1FF;
}

.section-contact .row {
    gap: 20px;
}

.section-contact_box {
    border-radius: 30px;
    background: #F5F7FF;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 420px;
    max-width: 100%;
    left: 0;
    right: 0;
}


.cloud-1 {
    background: url(../img/footer-clouds.svg);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 180px;
    background-size: contain;
    background-position: left bottom;
    z-index: 1;
    background-repeat: no-repeat;
}

.cloud-2 {
    background: url(../img/footer-clouds-2.svg);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 290px;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.cloud-3 {
    background: url(../img/cloud-solo.svg);
    position: absolute;
    width: 222px;
    height: 167px;
    right: -40%;
    top: 50%;
}

.contact-wing {
    position: absolute;
    width: 253px;
    height: 217px;
    top: 30%;
    background-repeat: no-repeat;
}

.wing-1 {
    left: -60%;
    background-image: url(../img/wing-left.svg);
}

.wing-2 {
    right: -60%;
    background-image: url(../img/wing-right.svg);
}

.section-contact .container {
    position: relative;
}

.form-field_submit {
    width: 100%;
}

.footer-link,
.site-footer__list .menu-item a {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

.footer-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #C1C6D5;
}

.standart-items-2 .standart-item {
    max-width: calc(50% - 20px);
}

.steps-box {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.step-item {
    max-width: calc(25% - 20px);
    width: 100%;
}

.step-item_box {
    overflow: hidden;
    height: 400px;
    border-radius: 20px;
    background: #F5F7FF;
    padding: 45px 30px;
    position: relative;
}

.step-item_text {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
}

.step-item_count {
    position: absolute;
    bottom: -50px;
    right: 0;
    font-weight: 700;
    font-size: 220px;
    line-height: 1;
    color: #C7D5FF;
    backdrop-filter: blur(2px);
}

.why-features-3 .why-feature {
    max-width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 30px;
    text-align: center;
}

.why-features-3 .why-feature_icon {
    width: auto;
    min-width: unset;
    height: auto;
}

.why-features-6 .why-feature_content {
    margin-bottom: 0;
    gap: 10px;
}

.section-about_bg {
    margin-top: 20px;
}

.faq-groups {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #151821;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-block {
    background: #F5F7FF;
    padding: 25px 40px;
    border-radius: 16px;
}

.faq-block .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
}

.faq-question .icon {
    transition: .4s transform;
}

.faq-block.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-block .faq-answer {
    display: none;
    padding: 30px;
    gap: 10px;
    margin-top: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(200, 206, 232, 0.5);
    border-radius: 20px;
}

.faq-block.active .faq-answer {
    display: block;
}

.section-faq_page .row {
    gap: 20px;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    text-align: left;
    font-size: 12px;
}

.wpcf7-spinner {
    display: none;
}

.section-contact .wpcf7-not-valid-tip,
.section-contact .wpcf7-response-output {
    color: #FFF;
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.payment-banner_form .form-field_submit {
    margin-top: 10px;
}

.section-standarts .features {
    margin-bottom: 30px;
}

.seo-block {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.seo-item {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px #D6DAE5;
    border-radius: 20px;
    max-width: calc(50% - 20px);
}

.seo-item_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151821;
    margin-bottom: 15px;
}

.seo-item_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #647196;
}

@media screen and (max-width: 767px) {
    .seo-block {
        display: block;
    }

    .seo-item {
        max-width: unset;
    }

    .standart-items {
        flex-direction: column;
    }

    .standart-item {
        max-width: unset;
    }

    .why-row {
        flex-direction: column;
    }

    .why-features {
        flex-direction: column;
    }

    .why-feature {
        max-width: unset !important;
    }

    .why-feature.swiper-slide {
        /* width: auto !important; */
        text-align: center;
        max-width: 100%;

    }

    .why-feature.swiper-slide .why-feature_icon {
        height: auto;
    }

    .contact-wing,
    .cloud-3,
    .cloud-2,
    .cloud-1 {
        display: none;
    }

    .step-item {
        max-width: unset;
    }

    .faq-item {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .faq-item_question {
        margin-bottom: 16px;
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
    }

    .faq-item_answer p:last-child {
        margin-bottom: 0;
    }

    .swiper .swiper-pagination {
        top: auto !important;
        bottom: 2px;
        background: #E9EEFF;
        border-radius: 50px;
        height: 2px !important;
    }

    .swiper {
        padding-bottom: 30px !important;
        margin-right: -16px !important;
        overflow: unset !important;
    }

    .swiper-pagination span {
        background: #628CFF;
        height: 4px !important;
        top: -1px !important;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .why-cta {
        max-width: unset;
    }

    .section-negative {
        margin-top: -20px;
    }

    .dark-bg {
        height: 300px;
    }

    .standart-item {
        padding: 24px;
    }

    section {
        margin-bottom: 100px;
    }

    .why-feature_title {
        font-size: 16px;
    }

    .why-feature {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .why-feature_text {
        font-size: 14px;
    }

    .site-footer {
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .site-footer__top {
        padding: 0 15px;
    }

    .section-hero .section-title {
        font-size: 24px;
        line-height: 150%;
    }

    .section-hero p {
        font-size: 16px;
        line-height: 125%;
    }

    .feature-item {
        max-width: unset;
        display: flex !important;
        width: auto !important;
    }

    .payment-group {
        flex-direction: column;
        margin-bottom: 30px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .payment-group_items {
        flex-wrap: wrap;
    }

    .payment-group_title {
        font-size: 16px;
    }

    .payment-group_item {
        height: 38px;
        padding: 4px 8px;
        width: calc(33.33% - 8px);
    }

    .payment-banner {
        flex-direction: column;
        gap: 30px;
        padding: 30px 18px;
        text-align: center;
    }

    .payment-banner_title {
        font-size: 18px;
    }

    .payment-banner_content p {
        font-size: 14px;
        margin-top: 10px;
    }

    .solutions {
        flex-direction: column;
    }

    .solution-item {
        flex-direction: row;
    }

    .solution-item_content {
        text-align: left;
    }

    .solution-form {
        display: none;
    }

    .solution-features_item {
        white-space: unset;
        width: 100%;
        font-size: 14px;
    }

    .solution-features_title {
        font-size: 16px;
    }

    .solution-item_title {
        font-size: 16px;
    }

    .solution-item_text {
        font-size: 14px;
    }

    .mission {
        padding: 30px 20px;
        background: url(../img/bird-cloud-mobile.png);
        padding-bottom: 220px;
        background-position: right;
        background-size: cover;
    }

    .mission-title {
        font-size: 14px;
    }

    .mission-feature_item {
        display: flex !important;
        align-items: center;
        width: auto !important;
        height: auto !important;
        max-width: 220px;
        gap: 10px;
    }

    .why-cta {
        display: none;
    }

    .platform-item {
        max-width: 254px;
    }

    .contact-form {
        padding-bottom: 40px;
        margin: 0 -16px;
    }

    .btn {
        height: 48px;
    }

    .form-field_text {
        height: 46px;
    }

    .mission-features {
        position: relative;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__actions {
        margin-left: auto;
    }

    .section-title_box {
        max-width: unset;
    }

    .section-about_box {
        padding: 30px 25px;
        margin-top: -10px;
    }

    .section-about_box .section-title {
        font-size: 16px !important;
    }

    .section-hero {
        background-image: url(../img/mobile-bg.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .payment-group_item img {
        max-height: 30px;
    }

    .section-about_bg {
        display: none;
    }

    .section-contact .row {
        flex-direction: column;
        gap: 30px;
    }

    .section-contact {
        overflow: hidden;
    }

    .contact-features {
        margin-left: 0 !important;
    }

    .contact-features_item {
        width: auto !important;
        display: flex !important;
        gap: 10px;
        flex-direction: column;
    }

    .section-contact_box {
        display: none;
    }

    .solution-features_part {
        padding: 30px 20px;
    }

    .feature-item {
        padding: 14px 16px;
    }

    .platform-item {
        padding: 40px 16px;
    }

    .solution-item {
        padding: 20px;
    }

    .solution-item_icon {
        min-width: 64px;
        max-width: 64px;
    }

    .standart-items-2 .standart-item {
        max-width: 100%;
    }

    .swiper-slide {
        height: auto !important;
    }

    .features .swiper-slide {
        width: auto !important;
    }

    section {
        overflow: hidden;
    }

    .page-template-page-payments .platform-items {
        flex-direction: column;
    }

    .page-template-page-payments .platform-item {
        max-width: unset;
        flex-direction: row;
        gap: 20px;
    }

    .page-template-page-payments .platform-item_content {
        text-align: left;
    }

    .page-template-page-payments .platform-item_icon {
        min-width: 60px;
        margin: 0;
    }

    .page-template-page-payments .platform-item_title {
        text-align: left;
        color: #151821;
    }

    .page-template-page-payments .platform-item_text {
        color: #647196;
    }

    .section-faq {
        padding-bottom: 35px;
    }

    .header-bottom_mobile {
        position: fixed;
        bottom: 0;
        background: #FFF;
        top: auto;
        width: 100%;
        left: 0;
        right: 0;
        z-index: 3;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        z-index: 5;
    }

    .site-header .container {
        justify-content: center;
    }

    .header-bottom_mobile .site-header__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        height: 40px;
    }

    .site-header {
        background: #FFF;
        filter: unset;
    }

    .mobile-menu {
        padding-bottom: 30px;
        margin-bottom: 12px;
        border-bottom: 1px solid #D8DDED;
    }

    .mobile-menu_contacts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu .menu-item a,
    .mobile-menu_contacts a {
        font-weight: 500;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0.01em;
        color: #151821;
    }

    .site-footer_row {
        display: flex;
        gap: 60px;
    }

    .faq-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .faq-groups {
        width: 100%;
    }

    .swiper {
        max-width: 100%;
        margin-left: 0 !important;
        padding-top: 20px !important;
    }

    .swiper-features,
    .features-pagination {
        overflow: unset !important;
    }

    .section-solutions,
    .section-negative,
    .section-support,
    .section-standarts {
        padding-bottom: 40px;
    }
}