/* ============================================================
   Exclusivity Partners — «Почему это важно для партнёров»
   BEM block: excl
   ============================================================ */

/* ---- Layout ---- */

.excl {
    background: var(--color-white);
    padding: 100px 120px 0 120px;
}

.excl__inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Sidebar ---- */

.excl__sidebar {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 148px;
    align-self: flex-start;
}

.excl__sidebar-box {
    background: var(--color-bg-light);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.excl__sidebar-title {
    font-family: var(--font-neo);
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
    color: var(--color-black);
    margin: 0;
}

.excl__doc-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.excl__doc-img img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 300px;
}

.excl__sidebar-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.excl__sidebar-cta .btn {
    width: 100%;
}

.excl__sidebar-caption {
    font-family: var(--font-inter);
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ---- Main ---- */

.excl__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 100px;
}

/* Head */

.excl__head {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.excl__title {
    font-family: var(--font-neo);
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -1.8px;
    color: var(--color-black);
    margin: 0;
}

.excl__desc {
    font-family: var(--font-inter);
    font-size: 19px;
    line-height: 30px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Features block */

.excl__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.excl__features-title {
    font-family: var(--font-neo);
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
    color: var(--color-black);
    margin: 0;
}

/* Single feature row */

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

.excl__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(1, 126, 66, 0.05);
}

.excl__feature-icon img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.excl__feature-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.excl__feature-name {
    font-family: var(--font-neo);
    font-size: 24px;
    line-height: 28px;
    color: var(--color-black);
    margin: 0;
}

.excl__feature-text {
    font-family: var(--font-inter);
    font-size: 19px;
    line-height: 30px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Note / blockquote */

.excl__note {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.excl__note-bar {
    flex-shrink: 0;
    width: 4px;
    align-self: stretch;
    background: var(--color-primary);
}

.excl__note-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.excl__note-title {
    font-family: var(--font-neo);
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
    color: var(--color-black);
    margin: 0;
}

.excl__note-desc {
    font-family: var(--font-inter);
    font-size: 19px;
    line-height: 30px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================================
   RESPONSIVE — Tablet 1170px
   ============================================================ */

@media (max-width: 1170px) {
    .excl {
        padding: 64px 48px 0;
    }

    .excl__inner {
        gap: 40px;
    }

    .excl__sidebar {
        width: 280px;
    }

    .excl__sidebar-title {
        font-size: 28px;
        line-height: 34px;
    }

    .excl__title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px;
    }

    .excl__features-title,
    .excl__note-title {
        font-size: 28px;
        line-height: 34px;
    }

    .excl__desc,
    .excl__feature-text,
    .excl__note-desc {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ============================================================
   RESPONSIVE — Mobile 640px
   ============================================================ */

@media (max-width: 640px) {
    .excl {
        padding: 0;
    }

    .excl__inner {
        flex-direction: column;
        gap: 0;
    }

    /* Sidebar comes first, full width */
    .excl__sidebar {
        width: 100%;
        position: static;
    }

    .excl__sidebar-box {
        padding: 24px;
    }

    .excl__sidebar-title {
        font-size: 32px;
        line-height: 37px;
        letter-spacing: 0;
    }

    .excl__main {
        padding: 32px 24px;
        gap: 24px;
    }

    .excl__title {
        font-size: 32px;
        line-height: 37px;
        letter-spacing: 0;
    }

    .excl__desc,
    .excl__feature-text,
    .excl__note-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .excl__features-title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0;
    }

    .excl__feature-icon {
        padding: 9px;
        border-radius: 9px;
        width: 64px;
        box-sizing: border-box;
    }

    .excl__feature-icon img {
        width: 46px;
        height: 46px;
    }

    .excl__feature-name {
        font-size: 18px;
        line-height: 1;
    }

    .excl__feature-body {
        gap: 4px;
    }

    .excl__note-title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0;
    }

    .excl__note-content {
        gap: 8px;
    }
}
