
@font-face {
    font-family: 'petrovsans';
    src: url('../fonts/petrovsans-trial-bold.woff') format('woff'), url('../fonts/petrovsans-trial-bold.woff2') format('woff2');
    font-weight: bold; /* Жирное начертание */
    font-style: normal;
}

@font-face {
    font-family: 'petrovsans';
    src: url('../fonts/petrovsans-trial-regular.woff') format('woff'), url('../fonts/petrovsans-trial-regular.woff2') format('woff2');
    font-weight: normal; /* Обычное начертание */
    font-style: normal;
}
@font-face {
    font-family: 'petrovsans';
    src: url('../fonts/petrovsans-trial-semibold.woff') format('woff'), url('../fonts/petrovsans-trial-semibold.woff2') format('woff2');
    font-weight: 300; /* Легкое начертание (300 — это значение для light) */
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'petrovsans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    background: #f5f9ff;
    color: #0a1a2f;
    line-height: 1.5;
}

:root {
    --primary: #1b1464;
    --primary-light: #dbeafe;
    --primary-soft: #eef4ff;
    --gray-bg: #ffffff;
    --text-muted: #546e7a;
    --border-light: #e2eaf2;
    --card-shadow: 0 20px 35px -10px rgba(0,30,60,0.08);
    --sidebar-bg: #f9fcff;
}

/* Навигация */
.navbar {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.navbar.scrolled {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 60%, rgba(255, 255, 255, 0.45) 100%);
    border-bottom-color: rgba(226, 234, 242, 0.9);
    box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(145deg, #1d4ed8, #6b21a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    cursor: pointer;
}
.logo img{
    height:45px;
}
    .logo span {
        background: none;
        -webkit-text-fill-color: #334155;
        font-weight: 400;
        font-size: 0.95rem;
        margin-left: 6px;
    }

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

    .menu li a {
        text-decoration: none;
        font-weight: 500;
        color: #2b3e55;
        transition: 0.2s;
        font-size: 1rem;
    }

        .menu li a:hover {
            color: var(--primary);
        }

.btn-login {
    background-color: #eff0ff !important;
    border-color: #1b1464 !important;
    color: #1b1464 !important;
    border: 1px solid;
    padding: 0.5rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
}
    .btn-login:hover {
        box-shadow: 0 6px 12px rgba(37, 99, 235, 0.2);
    }
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1e293b;
    background: none;
    border: none;
}

.mobile-menu {
    display: none;
    flex-basis: 100%;
    background: white;
    padding: 1.5rem 0 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: 1rem;
}

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

    .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

        .mobile-menu ul li a {
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            color: #1e293b;
            display: block;
            padding: 0.3rem 0;
        }

    .mobile-menu .btn-login-mobile {
        background: var(--primary-light);
        color: var(--primary);
        padding: 0.7rem 1rem;
        border-radius: 30px;
        text-align: center;
        font-weight: 600;
        margin-top: 0.5rem;
    }

/* Контейнер */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

/* Заголовки страниц */
.page-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #17212b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* Главная */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    min-height: 100vh;
    margin: 0 0 4rem;
}

.hero-text {
    flex: 1 1 300px;
}

    .hero-text h2 {
        font-size: 3.8rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #061a8d, #cb0000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-text p {
        font-size: 1.2rem;
        color: var(--text-muted);
        max-width: 500px;
    }

/* Краткие преимущества под заголовком hero */
.hero-highlights {
    list-style: none;
    margin: 0 0 1.45rem;
    padding: 0;
    max-width: 560px;
    display: grid;
    gap: 0.7rem 0.9rem;
}

    .hero-highlights li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0.85rem;
        border-radius: 0.9rem;
        box-shadow: 0 10px 22px -18px rgb(29 78 216 / 15%);
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

.hero-highlights li:hover {
    transform: translateY(-2px);
    border-color: #d7e5ff;
    box-shadow: 0 16px 30px -18px rgba(29, 78, 216, 0.42);
}

.hero-highlights li strong {
    display: block;
    margin-bottom: 0.22rem;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-highlight-copy {
    display: block;
    min-width: 0;
}

.hero-highlight-copy small {
    display: block;
    color: #5f718f;
    font-size: 0.82rem;
    line-height: 1.3;
}

.hero-highlight-icon {
    flex: 0 0 auto;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #eef4ff 0%, #dbe8ff 100%);
    color: var(--primary);
    font-size: 0.84rem;
    margin-top: 0.02rem;
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (min-width: 520px) {
    .hero-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-cta {
    margin-top: 1.2rem;
}

.btn-try-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1d4ed8 0%, #1b1464 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 30px -18px rgba(29, 78, 216, 0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-try-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -16px rgba(29, 78, 216, 0.85);
    opacity: 0.98;
}
.wb-gradient {
    background: linear-gradient(135deg, #8C43FF 0%, #B47AFF 100%);color:white;
}
.ozon-gradient {
    background: linear-gradient(135deg, #005BFF 0%, #3482F7 100%);
    color: white;
}
/* Yandex Market — фирменный красно-желтый */
.market-gradient {
    background: linear-gradient(150deg, rgb(255 160 0) 0%, rgba(255, 222, 0, 1) 100%); color: white;
}
/* AliExpress Classic — фирменный оранжевый */
.aliexpress-gradient {
    background: linear-gradient(135deg, #FF6A00 0%, #FFA500 100%);
    color: white;
}
.market-icon {
    border-radius: 60px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 5px 15px #dbeafe;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid var(--border-light);
}

.hero-card {
    flex: 1;
    min-width: 0;
}

.hero-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.3rem;
    object-fit: cover;
}

.hero-screens-stack {
    position: relative;
    height: min(90vh, 860px);
    min-height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.45s ease-out;
}

.hero-layer {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(340px, 50vw, 700px);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 25px 50px -20px rgba(11, 30, 70, 0.42);
    transition: transform 0.35s ease-out;
    will-change: transform;
}

.hero-layer-back {
    z-index: 1;
    opacity: 0.92;
    transform: translate(-50%, -120%) translate(-38px, -28px) rotate(-7deg);
}

.hero-layer-main {
    z-index: 2;
    width: clamp(400px, 58vw, 820px);
    transform: translate(-50%, -50%) rotate(-1deg);
}

.hero-layer-front {
    z-index: 3;
    opacity: 0.96;
    transform: translate(-50%, -5%) translate(34px, 30px) rotate(6deg);
}

/* Сетка возможностей */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
    box-shadow: var(--card-shadow);
    border: 1px solid #f1f4f9;
    transition: 0.2s;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 1.2rem;
    }

/* Плоский цветной стиль для первого блока преимуществ */
.feature-card-flat {
    position: relative;
    border-radius: 1.2rem;
    border: 1px solid #e8eef8;
    box-shadow: none;
    padding-top: 1.2rem;
}

.feature-flat-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.feature-card-flat h3 {
    margin-bottom: 0.6rem;
}

.feature-flat-orders {
    background: #eaf2ff;
}

.feature-flat-orders .feature-flat-tag {
    background: #dbeafe;
    color: #1d4ed8;
}

.feature-flat-stock {
    background: #f4fcf6;
}

.feature-flat-stock .feature-flat-tag {
    background: #dcfce7;
    color: #15803d;
}

.feature-flat-catalog {
    background: #fff8f2;
}

.feature-flat-catalog .feature-flat-tag {
    background: #ffedd5;
    color: #c2410c;
}

.feature-flat-finance {
    background: #f9f7ff;
}

.feature-flat-finance .feature-flat-tag {
    background: #ede9fe;
    color: #6d28d9;
}

/* Ключевые модули на главной */
.module-section .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 2.2rem;
}

.module-card {
    background: #ffffff;
    border: 1px solid #eaf0f7;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 18px 36px -22px rgba(13, 42, 84, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px -18px rgba(13, 42, 84, 0.35);
}

.module-preview {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(140deg, #f4f8ff 0%, #eef4ff 100%);
}

.module-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.module-content {
    padding: 1rem 1.1rem 1.2rem;
}

.module-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #eef6ff;
    color: #2362d7;
    font-size: 0.82rem;
    font-weight: 600;
}

.module-content h3 {
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
}

.module-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Интеграции с маркетплейсами */
.integrations-section {
    margin-top: 2rem;
}

.integrations-lead {
    max-width: 720px;
    margin: 0 0 2rem;
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.integrations-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
}

.integrations-copy p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 1.02rem;
}

.integrations-copy p:last-of-type {
    margin-bottom: 0;
}

.integrations-note {
    margin-top: 1.25rem !important;
    padding: 1rem 1.15rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #f6faff 0%, #eef4ff 100%);
    border: 1px solid #e3ebf7;
    font-size: 0.95rem !important;
}

.integrations-market-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1.75rem;
}

.integrations-shots {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.integrations-shot {
    margin: 0;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #eaf0f7;
    box-shadow: 0 20px 40px -24px rgba(13, 42, 84, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.integrations-shot:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 48px -20px rgba(13, 42, 84, 0.45);
}

.integrations-shot img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.integrations-shot figcaption {
    padding: 0.65rem 1rem 0.85rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-top: 1px solid #f0f4fa;
    background: #fafcff;
}

@media (max-width: 960px) {
    .integrations-layout {
        grid-template-columns: 1fr;
    }

    .integrations-shots {
        order: -1;
    }
}

/* Тарифы (карточки) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.price-card {
    background: white;
    border-radius: 2.5rem;
    padding: 2rem 1.8rem 2.2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid #eef2f6;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
}

    .price-card:hover {
        transform: translateY(-8px);
    }

    .price-card.popular {
        border: 2px solid var(--primary);
        background: #f6fbff;
    }

.popular-badge {
    background: var(--primary);
    color: white;
    display: inline-block;
    padding: 0.3rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.price-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-card .sub {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.price-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

    .price-card li i {
        color: var(--primary);
    }

.btn-price {
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    padding: 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}

    .btn-price:hover {
        background: var(--primary);
        color: white;
    }

.popular .btn-price {
    background: var(--primary);
    color: white;
}

/* Помощь — современный лейаут */
.help-modern-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    border-radius: 2.5rem;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    border: 1px solid rgba(37,99,235,0.1);
    margin-top: 1.5rem;
}

.help-sidebar {
    flex: 0 0 280px;
    padding: 1.6rem 1.2rem;
    border-right: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
    align-self: start;
}

.search-mini {
    background: white;
    border-radius: 48px;
    padding: 0.2rem 0.2rem 0.2rem 1.2rem;
    display: flex;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

    .search-mini input {
        border: none;
        background: transparent;
        padding: 0.7rem 0;
        flex: 1;
        outline: none;
        font-size: 0.95rem;
    }

    .search-mini button {
        background: var(--primary);
        border: none;
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 40px;
        font-weight: 500;
        cursor: pointer;
    }

.help-sections-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.help-section-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.68rem 0.78rem;
    border-radius: 0.9rem;
    background: #ffffff;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    font-weight: 600;
    color: #223349;
    border: 1px solid #e8eef7;
    width: 100%;
    text-align: start;
    font-size: 0.95rem;
    line-height: 1.25;
    box-shadow: 0 6px 14px -16px rgba(22, 62, 122, 0.45);
}

    .help-section-item i {
        width: 1.15rem;
        color: #5f7cab;
        font-size: 1rem;
        transition: color 0.2s ease;
    }

    .help-section-item:hover {
        background: #f6f9ff;
        border-color: #d6e5ff;
        color: #1f4db3;
        transform: translateY(-1px);
    }

    .help-section-item.active {
        background: linear-gradient(135deg, #f4f8ff 0%, #eaf2ff 100%);
        color: #1c4fb5;
        border-color: #bdd4ff;
        box-shadow: 0 12px 22px -16px rgba(37, 99, 235, 0.5);
    }

        .help-section-item.active i {
            color: #2563eb;
        }

.help-sidebar-footer {
    margin-top: 2rem;
    background: #fafcfd;
    border-radius: 1.5rem;
    padding: 1.2rem;
}

.help-content-area {
    flex: 1;
    background: #fafcfd;
    border-radius: 10px;
    padding: 2rem 2.2rem;
    /* border: 1px solid var(--border-light); */
    min-height: 400px;
    overflow-x: auto;
    max-width: calc(100% - 320px);
    box-sizing: border-box;
}

.help-article h2 {
    font-size: 2rem;
    font-weight: 650;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-article .meta {
    color: var(--text-muted);
    margin-bottom: 2rem;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 1rem;
}

.help-article p {
    margin: 1.5rem 0;
    color: #253649;
    font-size: 1.05rem;
}

.help-article ul, .help-article ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.help-card-tip {
    background: #eef6ff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 6px solid var(--primary);
}

/* Контакты */
.contacts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.contact-info {
    flex: 1 1 250px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.contact-office {
    flex: 1;
    background: #f0f4fe;
    border-radius: 1.8rem;
    padding: 2rem;
}

.office-map-placeholder {
    margin-top: 1rem;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

/* Логин */
.login-card {
    max-width: 460px;
    margin: 2rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: 2.5rem;
    box-shadow: var(--card-shadow);
}

    .login-card input {
        width: 100%;
        padding: 1rem;
        margin: 0.8rem 0 1.5rem;
        border: 1px solid var(--border-light);
        font-size: 1rem;
    }

.login-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Футер */
footer {
    border-top: 1px solid var(--border-light);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Адаптивность */
@media (max-width: 1000px) {
    .help-modern-layout {
        flex-direction: column;
    }

    .help-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-screens-stack {
        min-height: 380px;
        height: 62vh;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero{
        flex-direction:column;
    }
    .hero-layer {
        width: clamp(280px, 92vw, 520px);
        max-width: calc(100vw - 2.8rem);
    }

    .hero-layer-main {
        width: clamp(310px, 98vw, 580px);
        max-width: calc(100vw - 2.2rem);
    }

    .hero-layer-back,
    .hero-layer-front {
        opacity: 0.55;
    }

    .hero-card {
        width: 100%;
        overflow: hidden;
    }
}

/* Фоновая параллакс-секция с логотипами маркетплейсов */
.parallax-logos {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-logo {
    position: absolute;
    opacity: 0.10;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.parallax-logo-inner {
    transform-origin: center;
    transform: rotate(var(--rot, 0deg));
    filter: drop-shadow(0 18px 45px rgba(25, 55, 200, 0.08));
}

.parallax-logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.parallax-logo.ozon {
    top: -60px;
    left: -110px;
    width: 320px;
    opacity: 0.08;
    --rot: -12deg;
}

.parallax-logo.wb {
    top: 110px;
    right: -140px;
    width: 320px;
    opacity: 0.075;
    --rot: 8deg;
}

/* Было bottom: -70px — блок уезжал под нижний край viewport и почти не был виден */
.parallax-logo.yandex-market {
    top: 48vh;
    bottom: auto;
    left: -100px;
    width: min(420px, 44vw);
    max-width: 420px;
    opacity: 0.09;
    --rot: 10deg;
    z-index: 1;
}

.parallax-logo-inner.yandex-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.parallax-logo-inner.yandex-inner svg {
    width: 96px;
    flex: 0 0 auto;
}

.parallax-logo .yandex-market-text {
    font-weight: 900;
    color: #FF5226;
    font-size: 64px;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.parallax-logo.aliexpress {
    bottom: -35px;
    right: -160px;
    width: 450px;
    opacity: 0.07;
    --rot: -8deg;
}

/* Чтобы фон не мешал контенту */
.container,
footer {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .parallax-logos {
        display: none;
    }
}
