

/* Start:/products/erp/erp.css?178818537317720*/
:root {
    --sup-purple: var(--color-link, #843BF5);
    --sup-purple-light: #B15DFF;
    --sup-bg-panel: #0b131d;
    --sup-bg-deep: #060B20;
    --sup-text-muted: #b0b0b0;
    --sup-text-dim: #8c8c8c;
    --sup-radius: var(--border-radius, 16px);
}

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


.sup-main-container {
    max-width: 1840px;
    margin: 0 auto;
    font-family: "Geologica", "Inter", system-ui, sans-serif;
}

.sup-main-container * {
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.sup-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.sup-main-container h1,
.sup-main-container h2,
.sup-main-container h3,
.sup-hero-heading {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.sup-main-container h2 {
    font-size: 54px;
    line-height: 1.15;
}

.sup-main-container h3 {
    font-size: 32px;
    line-height: 1.3;
}

.sup-main-container p {
    font-size: 32px;
    line-height: 1.6;
    color: var(--sup-text-muted);
    margin: 0 0 20px 0;
}

.sup-main-container section {
    padding: 50px 30px;
}

.sup-section-header {
    margin: 0 auto 44px;
}

.sup-about > .sup-container > .sup-section-header {
	text-align: center;
	max-width: 900px;
}

.sup-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 19px;
    font-weight: 700;
    color: var(--sup-purple);
    margin-bottom: 14px;
}

.sup-section-header h2 {
    margin-bottom: 16px;
}

/* ============ Кнопки ============ */
.sup-btn {
    display: inline-block;
    max-width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    border-radius: 50px;
    padding: 18px 40px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

.sup-btn-primary {
    background-color: var(--sup-purple);
    color: #ffffff;
}

.sup-btn-primary:hover,
.sup-btn-primary:focus-visible {
    opacity: 0.88;
}

.sup-btn-tariff {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    padding: 15px 20px;
    font-size: 15px;
}

.sup-btn-tariff:hover,
.sup-btn-tariff:focus-visible {
    background-color: var(--sup-purple);
    border-color: var(--sup-purple);
    opacity: 1;
}

.sup-btn:focus-visible {
    outline: 2px solid var(--sup-purple-light);
    outline-offset: 3px;
}

/* ============ HERO ============ */
.sup-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(120% 140% at 85% 0%, #2a1450 0%, #0b0f24 45%, #05070f 100%);
    border-radius: 20px;
    padding: 64px 48px;
    margin: -25px 0 0;
    color: #ffffff;
}

.sup-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 780px) 1fr;
    align-items: center;
    gap: 40px;
}

.sup-hero-heading {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.sup-hero-lead {
    color: #d6d6de;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
}

.sup-hero-visual {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sup-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(132, 59, 245, 0.35);
}

.sup-hero-ring--1 {
    width: 220px;
    height: 220px;
}

.sup-hero-ring--2 {
    width: 300px;
    height: 300px;
    border-color: rgba(177, 93, 255, 0.18);
}

.sup-hero-icon {
    position: relative;
    font-size: 70px;
    color: var(--sup-purple);
    filter: drop-shadow(0 0 25px rgba(132, 59, 245, 0.55));
}

/* Быстрая навигация по разделам страницы — на всю ширину баннера.
   На мобильных (≤768px) — одна строка с горизонтальной прокруткой
   вместо переноса на несколько строк (см. erc.css). */
.sup-anchor-nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sup-anchor-btn {
    display: inline-block;
    flex-shrink: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 9px 18px;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    scroll-snap-align: start;
}

.sup-anchor-btn:hover,
.sup-anchor-btn:focus-visible {
    background: var(--sup-purple);
    border-color: var(--sup-purple);
    outline: none;
}

/* ============ О НАС ============ */
.sup-about-lead {
    font-size: 21px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--sup-text-muted);
}

/* ============ ЛОГОТИПЫ КЛИЕНТОВ ============ */
.sup-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.sup-client-logo {
    min-width: 0;
    aspect-ratio: 3 / 2;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--sup-radius);
    color: #565c70;
    font-size: 1.8rem;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.sup-client-logo:hover {
    border-color: var(--sup-purple);
    color: var(--sup-purple);
}

/* ============ ПРЕИМУЩЕСТВА (короткие пункты, только иконка + заголовок) ============ */
.sup-services--alt {
    background: linear-gradient(180deg, transparent, rgba(132, 59, 245, 0.05), transparent);
}

.sup-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.sup-advantage-card {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius);
    transition: all 0.5s ease;
}

.sup-advantage-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--sup-purple);
}

.sup-advantage-card h3 {
    font-size: 19px;
    line-height: 1.4;
}

/* ============ КАРТОЧКИ ПРОДУКТОВ/ВОЗМОЖНОСТЕЙ (равная высота, гибкая сетка) ============ */
.sup-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.sup-service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 20px 26px 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-text);
    border-radius: var(--border-radius);
    position: relative;
    transition: all 0.5s ease;
}

.sup-service-icon {
    display: block;
    font-size: 2.2rem;
    color: var(--sup-purple);
    margin-bottom: 16px;
}

.sup-service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.sup-service-card p {
    font-size: 18px;
    line-height: 1.55;
    flex-grow: 1;
}

.sup-brief-card {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--sup-radius);
  padding: 30px 34px;
}

.sup-btn-outline:hover, .sup-btn-outline:focus-visible {
  border-color: var(--sup-purple);
  color: var(--sup-purple);
}
a:focus, a:hover {
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
}
.sup-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* CTA-баннер */
.sup-cta-banner {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(132, 59, 245, 0.12);
    border: 1px solid rgba(132, 59, 245, 0.4);
    border-radius: var(--sup-radius);
    padding: 36px 40px;
}

.sup-cta-banner h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.sup-cta-banner p {
    max-width: 520px;
    margin: 0;
    font-size: 22px;
}

.sup-cta-banner .sup-btn {
    flex-shrink: 0;
}

/* ============ КАРТА ОБМЕНА ДАННЫМИ ============ */
.sup-partner .sup-section-header {
    margin-bottom: 50px;
}

/* Визуальная схема: 1С <-> Сайт/Битрикс24 */
.sup-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 56px;
}

.sup-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 160px;
    padding: 26px 16px;
    background: var(--sup-bg-panel);
    border: 1px solid rgba(132, 59, 245, 0.5);
    border-radius: var(--sup-radius);
    box-shadow: 0 0 24px rgba(132, 59, 245, 0.18);
}

.sup-flow-node i {
    font-size: 2.2rem;
    color: var(--sup-purple);
}

.sup-flow-node span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.sup-flow-line {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sup-purple-light);
    font-size: 1.6rem;
    flex: 1;
    max-width: 160px;
    position: relative;
}

.sup-flow-line::before,
.sup-flow-line::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(132, 59, 245, 0.6));
}

.sup-flow-line::after {
    background: linear-gradient(90deg, rgba(132, 59, 245, 0.6), transparent);
}

.sup-flow-line i {
    margin: 0 10px;
    flex-shrink: 0;
}

/* Блок «контура» (коммерческий / корпоративный) внутри карты обмена */
.sup-contour {
    margin-bottom: 50px;
}

.sup-contour:last-child {
    margin-bottom: 0;
}

.sup-contour-title {
    font-size: 22px !important;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 26px !important;
    color: #ffffff;
}

/* ============ ТАРИФЫ ============ */
.sup-tariffs--alt {
    background: linear-gradient(180deg, transparent, rgba(132, 59, 245, 0.05), transparent);
}

.sup-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.sup-tariff-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--sup-radius);
    padding: 32px 24px;
}

.sup-tariff-card--accent {
    border-color: var(--sup-purple);
    background: rgba(132, 59, 245, 0.14);
    box-shadow: 0 8px 32px rgba(132, 59, 245, 0.22);
}

.sup-tariff-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.sup-tariff-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: var(--sup-text-dim) !important;
    margin-bottom: 20px !important;
    flex-grow: 1;
}

.sup-tariff-price {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* ============ ПАРТНЁРЫ (Swiper) ============
   Точная копия /local/templates/direkt2026/components/bitrix/news.list/
   swiper_main/style.css с главной страницы direkt.ink. */
.partners__list {
    padding: 200px 0 228px;
    position: relative;
}

.partners__wrapper ~ .cursor-animation {
    margin-top: 50px;
}

.partners__list .info-element {
    left: -45px;
    top: 7px;
    z-index: 1;
    position: absolute;
}

.partners__list > *:not(.info-element) {
    z-index: 2;
    position: relative;
}

.partners__title {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    z-index: 100;
    font-family: "GeologicaBold";
}

.partners__title p {
    color: var(--color-link);
    margin: 0;
}

.partners__wrapper {
    height: 420px;
    width: 100%;
}

.partners__wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.partners__wrapper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.partners__wrapper .swiper-slide a {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.partners__wrapper .swiper-slide a img {
    max-width: 100%;
    max-height: 35px;
}

@media (min-width: 620px) {
    .partners__wrapper-block {
        flex-direction: row !important;
    }

    .partners__wrapper .swiper-slide {
        width: calc((100% - 60px) / 4) !important;
    }
}

@media (max-width: 1220px) {
    .partners__list.container {
        padding-bottom: 60px;
    }

    .partners__title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .partners__list {
        padding: 80px 0 60px;
    }
}

@media (max-width: 620px) {
    .partners__title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .partners__wrapper {
        height: 250px;
    }

    .partners__wrapper .swiper-slide {
        height: calc((100% - 30px) / 4) !important;
    }

    .partners__list .info-element {
        display: block;
        left: -110px;
        top: -55px;
    }
}

/* ==========================================================================
   Адаптивность
   ========================================================================== */

@media (max-width: 1200px) {
    .sup-main-container {
        padding: 0 0px;
    }
}

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

    .sup-hero-visual {
        display: none;
    }

    .sup-cta-banner,
    .sup-brief-card {
        flex-direction: column;
        text-align: center;
    }

	.sup-btn-outline {
		margin-top: -33px;
	}

    .sup-flow {
        flex-direction: column;
    }

    .sup-flow-line {
        transform: rotate(90deg);
        max-width: 60px;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .sup-main-container h2 {
        font-size: 34px;
    }

    .sup-main-container p {
        font-size: 20px;
    }

    .sup-hero-heading {
        font-size: 32px;
    }

    .sup-hero {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .sup-main-container section {
        padding: 26px 14px;
    }

    .sup-container {
        padding: 0 14px;
    }

    .sup-section-header {
        margin-bottom: 18px;
    }

    .sup-services-grid,
    .sup-advantages-grid,
    .sup-tariffs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sup-clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .sup-service-card {
        padding: 14px 14px 16px;
    }

    .sup-advantage-card {
        padding: 16px 16px;
    }

    .sup-tariff-card {
        padding: 18px 12px;
    }

    .sup-brief-card {
        margin-top: 24px;
        padding: 20px 18px;
    }

    .sup-cta-banner {
        padding: 18px 16px;
        gap: 14px;
    }

    .sup-flow {
        margin-bottom: 32px;
    }

    .sup-flow-node {
        padding: 18px 14px;
    }

    .sup-contour {
        margin-bottom: 30px;
    }

    .sup-contour-title {
        margin-bottom: 18px !important;
    }

    .sup-partner .sup-section-header {
        margin-bottom: 24px;
    }

    /* Быстрые ссылки — в одну строку с горизонтальной прокруткой,
       а не в несколько строк, занимающие много места по высоте */
    .sup-anchor-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        margin: 14px -16px 0 10px;
        padding: 14px 16px 4px;
        scrollbar-width: none;
    }

    .sup-anchor-nav::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .sup-main-container h2 {
        font-size: 26px;
    }

    .sup-main-container p {
        font-size: 16px;
    }

    .sup-hero-heading {
        font-size: 24px;
    }

    .sup-hero {
        padding: 18px 14px;
    }

    .sup-main-container section {
        padding: 20px 12px;
    }

    .sup-container {
        padding: 0 0;
    }

    .sup-anchor-nav {
        margin: 12px -14px 0 7px;
        padding: 12px 14px 4px;
    }

    .sup-btn {
        padding: 13px 18px;
        font-size: 14px;
    }

    .sup-btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }

    .sup-cta-banner {
        padding: 16px 14px;
    }

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

    .sup-flow-node {
        width: 100%;
        max-width: 220px;
    }
}

/* ============ Служебное ============ */
img {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    .sup-btn,
    .sup-service-card,
    .sup-advantage-card,
    .sup-anchor-btn,
    .sup-client-logo {
        transition: none;
    }
}

/* End */
/* /products/erp/erp.css?178818537317720 */
