

/* Start:/local/components/vdpo/services/templates/.default/style.css?178182568938089*/
/* ==========================================================================
   VDPO Services Component — style.css
   Namespace: vs-* (vdpo-services)
   Matches design tokens from about2.php
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens (mirrors about2.php :root)
   -------------------------------------------------------------------------- */
:root {
    --vs-red:        #c0241d;
    --vs-red-dark:   #9d1813;
    --vs-orange:     #f0801a;
    --vs-ink:        #0f1115;
    --vs-ink-2:      #1a1d23;
    --vs-text:       #202428;
    --vs-muted:      #6b7280;
    --vs-muted-2:    #9aa0a8;
    --vs-bg:         #ffffff;
    --vs-bg-soft:    #f6f7f9;
    --vs-bg-tint:    #fff5f3;
    --vs-line:       #e9ecef;
    --vs-line-2:     #dde0e4;
    --vs-green:      #22a45d;
    --vs-shadow-sm:  0 1px 2px rgba(15,17,21,.05);
    --vs-shadow:     0 8px 28px -10px rgba(15,17,21,.18);
    --vs-shadow-lg:  0 30px 60px -25px rgba(15,17,21,.22);
    --vs-radius:     14px;
    --vs-radius-lg:  22px;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.vs-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.vs-breadcrumb {
    background: transparent;
    padding: 16px 0;
    font-size: 13.5px;
    color: var(--vs-muted);
}
.vs-breadcrumb a {
    color: var(--vs-muted);
    text-decoration: none;
    transition: color .15s;
}
.vs-breadcrumb a:hover { color: var(--vs-red); }
.vs-bc-sep { margin: 0 8px; color: var(--vs-line-2); }

/* --------------------------------------------------------------------------
   Kicker / section label
   -------------------------------------------------------------------------- */
.vs-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--vs-red);
    margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.vs-hero {
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
}
.vs-hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(192,36,29,.07), transparent 60%);
    pointer-events: none;
}
.vs-hero::after {
    content: "";
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240,128,26,.05), transparent 60%);
    pointer-events: none;
}
.vs-hero .vs-wrap { position: relative; z-index: 1; }

.vs-hero__title {
    font-size: clamp(32px, 4.5vw, 32px);
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--vs-ink);
    line-height: 1.1;
}
.vs-acc { color: var(--vs-red); }


/* Detail page: calmer, more compact heading than the catalog hero. */
.vs-page--element .vs-hero__title {
    font-size: clamp(28px, 3.4vw, 32px);
    line-height: 1.15;
    letter-spacing: -1.05px;
    margin-bottom: 14px;
}

.vs-hero__lead {
    font-size: 17px;
    color: var(--vs-muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.vs-hero__meta {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--vs-line);
    flex-wrap: wrap;
}
.vs-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--vs-muted);
}
.vs-hero__meta-item svg {
    width: 16px; height: 16px;
    color: var(--vs-red);
    flex: none;
}
.vs-hero__meta-item b { color: var(--vs-ink); }

/* --------------------------------------------------------------------------
   Sections grid (catalog root)
   -------------------------------------------------------------------------- */
.vs-sections-section { padding-bottom: 90px; }

.vs-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.vs-sec-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 18px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all .28s;
    position: relative;
    overflow: hidden;
}
.vs-sec-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vs-red), var(--vs-orange));
    opacity: 0;
    transition: opacity .28s;
}
.vs-sec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vs-shadow);
    border-color: transparent;
}
.vs-sec-card:hover::before { opacity: 1; }
.vs-sec-card:hover .vs-sec-card__icon {
    background: var(--vs-red);
    color: #fff;
    transform: rotate(-3deg);
}
.vs-sec-card:hover .vs-sec-card__arrow {
    transform: translateX(4px);
    color: var(--vs-red);
}

.vs-sec-card__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--vs-muted-2);
    margin-bottom: 14px;
    display: block;
}

.vs-sec-card__icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--vs-bg-tint);
    display: grid;
    place-items: center;
    color: var(--vs-red);
    margin-bottom: 20px;
    transition: all .28s;
    flex: none;
}
.vs-sec-card__icon svg { width: 30px; height: 30px; }

.vs-sec-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vs-ink);
    margin-bottom: 10px;
    line-height: 1.25;
}
.vs-sec-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}
.vs-sec-card__title-link:hover { color: var(--vs-red); }
.vs-sec-card:hover .vs-sec-card__title-link { color: var(--vs-red); }

.vs-sec-card__desc-wrap { margin-bottom: 16px; }
.vs-sec-card__desc {
    font-size: 14px;
    color: var(--vs-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;          /* ≈ 3 строки / ~50px */
    line-clamp: 3;
    overflow: hidden;
}
.vs-sec-card__desc.is-expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    overflow: visible;
}
.vs-sec-card__more {
    margin-top: 7px;
    padding: 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--vs-red);
    cursor: pointer;
    transition: opacity .15s;
}
.vs-sec-card__more:hover { opacity: .7; }

.vs-sec-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    flex: 1;
}
.vs-sec-card__list li {
    font-size: 13px;
    color: var(--vs-muted);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}
.vs-sec-card__list li::before {
    content: "";
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--vs-red);
    flex: none;
    margin-top: 6px;
}
.vs-sec-card__list-more {
    font-size: 12px !important;
    color: var(--vs-red) !important;
    font-weight: 600;
}
.vs-sec-card__list-more::before { background: var(--vs-orange) !important; }

.vs-sec-card__service-link {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.vs-sec-card__service-link:hover {
    color: var(--vs-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.vs-sec-card__section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vs-muted);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}
.vs-sec-card__section-link:hover {
    color: var(--vs-red);
}

.vs-sec-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--vs-line);
    margin-top: auto;
}
.vs-sec-card__count { font-size: 12.5px; color: var(--vs-muted); font-weight: 500; }
.vs-sec-card__arrow {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--vs-bg-soft);
    display: grid; place-items: center;
    color: var(--vs-muted);
    transition: all .2s;
}
.vs-sec-card__arrow svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   Why us
   -------------------------------------------------------------------------- */
.vs-why { margin-top: 20px; }

.vs-sec-head { margin-bottom: 40px; max-width: 720px; }
.vs-sec-head h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--vs-ink);
}
.vs-sec-head p { font-size: 16px; color: var(--vs-muted); line-height: 1.6; }
.vs-sec-head--center { text-align: center; margin: 0 auto 40px; }

.vs-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vs-why-card {
    background: var(--vs-bg-soft);
    border: 1px solid var(--vs-line);
    border-radius: 16px;
    padding: 28px;
    transition: .25s;
}
.vs-why-card:hover { background: #fff; box-shadow: var(--vs-shadow); }
.vs-why-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #fff;
    display: grid; place-items: center;
    color: var(--vs-red);
    margin-bottom: 18px;
    border: 1px solid var(--vs-line);
}
.vs-why-card__icon svg { width: 22px; height: 22px; }
.vs-why-card h4 { font-size: 15px; font-weight: 700; color: var(--vs-ink); margin-bottom: 8px; }
.vs-why-card p { font-size: 13.5px; color: var(--vs-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   Internal services (section page)
   -------------------------------------------------------------------------- */
.vs-hero--section { padding: 34px 0 42px; }

.vs-section-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--vs-muted);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: color .18s, transform .18s;
}
.vs-section-back svg { width: 16px; height: 16px; }
.vs-section-back:hover { color: var(--vs-red); transform: translateX(-2px); }

.vs-section-hero__label,
.vs-services-head__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--vs-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}
.vs-hero--section .vs-hero__title { margin-bottom: 14px; }
.vs-hero--section .vs-hero__lead { margin-bottom: 0; }

.vs-services-section--grid { padding: 0 0 90px; }
.vs-services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-top: 4px;
}
.vs-services-head h2 {
    margin: 0;
    color: var(--vs-ink);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.15;
}
.vs-count-badge {
    flex: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--vs-muted);
    background: var(--vs-bg-soft);
    padding: 8px 13px;
    border-radius: 20px;
    border: 1px solid var(--vs-line);
    white-space: nowrap;
}

.vs-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.vs-srv-card {
    min-height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 18px;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.vs-srv-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--vs-shadow);
}
.vs-srv-card--featured {
    background: linear-gradient(135deg, #fff 12%, var(--vs-bg-tint));
    border-color: rgba(192,36,29,.18);
}
.vs-srv-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 56px;
    margin-bottom: 20px;
}
.vs-srv-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    flex: none;
    place-items: center;
    border-radius: 15px;
    color: var(--vs-red);
    background: var(--vs-bg-tint);
    transition: background .25s, color .25s, transform .25s;
}
.vs-srv-card--featured .vs-srv-card__icon { color: #fff; background: var(--vs-red); }
.vs-srv-card:hover .vs-srv-card__icon { color: #fff; background: var(--vs-red); transform: rotate(-3deg); }
.vs-srv-card__icon svg { width: 27px; height: 27px; }
.vs-srv-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 99px;
    color: var(--vs-red);
    background: rgba(192,36,29,.08);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    text-align: right;
}
.vs-srv-card__body { display: flex; flex: 1; flex-direction: column; }
.vs-srv-card__title {
    margin: 0 0 10px;
    color: var(--vs-ink);
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.25px;
    line-height: 1.25;
}
.vs-srv-card__title a { color: inherit; text-decoration: none; transition: color .18s; }
.vs-srv-card__title a:hover { color: var(--vs-red); }
.vs-srv-card__desc {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 18px;
    color: var(--vs-muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.vs-srv-card__sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: auto 0 20px;
    padding: 0;
    list-style: none;
}
.vs-srv-card__sub li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--vs-text);
    font-size: 13.5px;
    line-height: 1.45;
}
.vs-srv-card__sub-ic {
    width: 19px;
    height: 19px;
    display: grid;
    flex: none;
    place-items: center;
    margin-top: 1px;
    border-radius: 5px;
    color: var(--vs-red);
    background: var(--vs-bg-soft);
}
.vs-srv-card__sub-ic svg { width: 11px; height: 11px; }
.vs-srv-card__sub-more {
    padding-left: 28px;
    color: var(--vs-muted) !important;
    font-size: 12.5px !important;
    font-weight: 600;
}
.vs-srv-card__footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--vs-line);
}
.vs-srv-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vs-red);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: gap .18s, color .18s;
}
.vs-srv-card__link:hover { gap: 12px; color: var(--vs-red-dark); }
.vs-srv-card__link svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 11px;
    cursor: pointer;
    border: none;
    transition: all .18s;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.vs-btn--primary {
    background: var(--vs-red);
    color: #fff;
    box-shadow: 0 8px 24px -10px rgba(192,36,29,.65);
}
.vs-btn--primary:hover { background: var(--vs-red-dark); transform: translateY(-1px); }

.vs-btn--outline {
    background: transparent;
    color: var(--vs-red);
    border: 1.5px solid var(--vs-red);
}
.vs-btn--outline:hover { background: var(--vs-red); color: #fff; }

.vs-btn--ghost {
    background: transparent;
    color: var(--vs-ink);
    border: 1.5px solid var(--vs-line-2);
}
.vs-btn--ghost:hover { border-color: var(--vs-ink); background: var(--vs-bg-soft); }

.vs-btn--lg { font-size: 15px; padding: 13px 22px; }

/* --------------------------------------------------------------------------
   Element (detail) page
   -------------------------------------------------------------------------- */
.vs-el-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
.vs-el-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.vs-el-card {
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--vs-shadow-lg);
    position: sticky;
    top: 90px;
}
.vs-el-card__icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--vs-bg-tint);
    display: grid; place-items: center;
    color: var(--vs-red);
    margin-bottom: 20px;
}
.vs-el-card__icon svg { width: 32px; height: 32px; }
.vs-el-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vs-ink);
    margin-bottom: 20px;
    line-height: 1.3;
}
.vs-el-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vs-el-card__list li {
    font-size: 14px;
    color: var(--vs-text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.vs-el-card__check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--vs-bg-tint);
    display: grid; place-items: center;
    flex: none;
    margin-top: 1px;
}
.vs-el-card__check svg { width: 11px; height: 11px; color: var(--vs-red); }

.vs-detail-section { padding: 60px 0 0; }
.vs-detail {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--vs-text);
}
.vs-detail h2, .vs-detail h3 { color: var(--vs-ink); margin: 28px 0 12px; }
.vs-detail p { margin-bottom: 16px; }
.vs-detail ul, .vs-detail ol { padding-left: 20px; margin-bottom: 16px; }
.vs-detail li { margin-bottom: 6px; }

.vs-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--vs-muted);
    text-decoration: none;
    transition: color .15s;
    padding: 10px 0;
}
.vs-back-link svg { width: 16px; height: 16px; }
.vs-back-link:hover { color: var(--vs-red); }

/* --------------------------------------------------------------------------
   Misc
   -------------------------------------------------------------------------- */
.vs-empty {
    font-size: 15px;
    color: var(--vs-muted);
    padding: 40px;
    text-align: center;
    background: var(--vs-bg-soft);
    border-radius: var(--vs-radius);
    border: 1px dashed var(--vs-line-2);
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.vs-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}
.vs-reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .vs-srv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .vs-sections-grid { grid-template-columns: repeat(2, 1fr); }
    .vs-why-grid { grid-template-columns: repeat(2, 1fr); }
    .vs-el-hero { grid-template-columns: 1fr; gap: 36px; }
    .vs-el-card { position: static; }
}

@media (max-width: 640px) {
    .vs-sections-grid { grid-template-columns: 1fr; }
    .vs-why-grid { grid-template-columns: 1fr; }
    .vs-services-head { align-items: flex-start; flex-direction: column; gap: 14px; }
    .vs-srv-card { padding: 24px; }
    .vs-hero { padding: 40px 0 50px; }
    .vs-hero__meta { flex-direction: column; gap: 10px; }
    .vs-el-hero__cta { flex-direction: column; }
    .vs-btn--lg { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .vs-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Element (detail) page — v2 enhancements
   ========================================================================== */

/* Kicker as link (section name above title) */
.vs-kicker--link { text-decoration: none; transition: opacity .15s; }
.vs-kicker--link:hover { opacity: .7; }

/* Hero head + trust chips */
.vs-el-head { max-width: 760px; }
.vs-el-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.vs-el-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--vs-text);
    background: var(--vs-bg-soft);
    border: 1px solid var(--vs-line);
    padding: 8px 14px;
    border-radius: 30px;
}
.vs-el-trust__item svg { width: 15px; height: 15px; color: var(--vs-red); flex: none; }

/* Body: main column + sticky aside */
.vs-el-body-section { padding: 8px 0 70px; }
.vs-el-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}
.vs-el-main { min-width: 0; }

/* Generic content block */
.vs-block { margin-bottom: 46px; }
.vs-block:last-child { margin-bottom: 0; }
.vs-block__head { margin-bottom: 22px; }
.vs-block__head h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: -.6px;
    color: var(--vs-ink);
    line-height: 1.2;
}
.vs-block__head .vs-kicker { margin-bottom: 8px; }

/* What's included — feature grid */
.vs-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.vs-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 12px;
    padding: 16px 18px;
    transition: .2s;
}
.vs-feat:hover { border-color: var(--vs-line-2); box-shadow: var(--vs-shadow-sm); }
.vs-feat__ic {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--vs-red);
    box-shadow: 0 0 0 5px var(--vs-bg-tint);
    flex: none;
    margin: 8px 6px 0 4px;
}
.vs-feat__txt { font-size: 14.5px; color: var(--vs-text); line-height: 1.5; }

/* Workflow steps */
.vs-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.vs-step {
    display: flex;
    gap: 20px;
    padding: 0 0 26px;
    position: relative;
}
.vs-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 21px; top: 44px; bottom: 0;
    width: 2px;
    background: linear-gradient(var(--vs-line-2), transparent);
}
.vs-step__num {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--vs-bg-tint);
    color: var(--vs-red);
    font-weight: 800;
    font-size: 15px;
    display: grid; place-items: center;
    flex: none;
    border: 1px solid rgba(192,36,29,.12);
    z-index: 1;
}
.vs-step__title { font-size: 16px; font-weight: 700; color: var(--vs-ink); margin: 9px 0 6px; }
.vs-step__desc { font-size: 14.5px; color: var(--vs-muted); line-height: 1.6; }
.vs-step__body { flex: 1; min-width: 0; padding-bottom: 4px; }

/* FAQ accordion */
.vs-faq {
    border: 1px solid var(--vs-line);
    border-radius: var(--vs-radius);
    overflow: hidden;
    background: #fff;
}
.vs-faq__item { border-bottom: 1px solid var(--vs-line); }
.vs-faq__item:last-child { border-bottom: none; }
.vs-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--vs-ink);
    text-align: left;
    transition: color .15s;
}
.vs-faq__q:hover { color: var(--vs-red); }
.vs-faq__chev {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--vs-bg-soft);
    display: grid; place-items: center;
    flex: none;
    color: var(--vs-muted);
    transition: transform .25s, background .2s, color .2s;
}
.vs-faq__chev svg { width: 16px; height: 16px; }
.vs-faq__item.is-open .vs-faq__chev {
    transform: rotate(180deg);
    background: var(--vs-red);
    color: #fff;
}
.vs-faq__a {
    overflow: hidden;
    transition: max-height .3s ease;
}
.vs-faq__a p {
    padding: 0 22px 20px;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--vs-muted);
}
/* Progressive enhancement: answers are open by default (no-JS / SEO).
   Only when JS is active do we collapse and toggle. */
.vs-js .vs-faq__a { max-height: 0; }
.vs-js .vs-faq__item.is-open .vs-faq__a { max-height: 360px; }

/* Sticky lead / request card */
.vs-el-aside { position: sticky; top: 90px; }
.vs-req-card {
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--vs-shadow-lg);
}
.vs-req-card__icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--vs-bg-tint);
    display: grid; place-items: center;
    color: var(--vs-red);
    margin-bottom: 18px;
}
.vs-req-card__icon svg { width: 30px; height: 30px; }
.vs-req-card__title { font-size: 19px; font-weight: 800; color: var(--vs-ink); margin-bottom: 8px; }
.vs-req-card__lead { font-size: 14px; color: var(--vs-muted); line-height: 1.6; margin-bottom: 18px; }
.vs-req-card__benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--vs-line);
}
.vs-req-card__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--vs-text);
}
.vs-req-card__benefits svg { width: 16px; height: 16px; color: var(--vs-green); flex: none; }
.vs-req-card__btn { width: 100%; justify-content: center; }
.vs-req-card__btn + .vs-req-card__btn { margin-top: 10px; }
.vs-req-card__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--vs-muted);
}
.vs-req-card__note svg { width: 15px; height: 15px; color: var(--vs-red); flex: none; }

/* Advantages section background */
.vs-adv-section { padding: 70px 0; background: var(--vs-bg-soft); border-top: 1px solid var(--vs-line); }
.vs-adv-section .vs-why-card { background: #fff; }

/* Related services */
.vs-rel-section { padding: 70px 0 10px; }
.vs-rel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.vs-rel-head h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -.8px;
    color: var(--vs-ink);
}
.vs-rel-head .vs-kicker { margin-bottom: 8px; }
.vs-rel-head__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vs-red);
    text-decoration: none;
    white-space: nowrap;
}
.vs-rel-head__all svg { width: 16px; height: 16px; transition: transform .2s; }
.vs-rel-head__all:hover svg { transform: translateX(4px); }

.vs-rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.vs-rel-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 16px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: all .25s;
}
.vs-rel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vs-shadow);
    border-color: transparent;
}
.vs-rel-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--vs-bg-tint);
    display: grid; place-items: center;
    color: var(--vs-red);
    flex: none;
    transition: .25s;
}
.vs-rel-card:hover .vs-rel-card__icon { background: var(--vs-red); color: #fff; }
.vs-rel-card__icon svg { width: 24px; height: 24px; }
.vs-rel-card__body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.vs-rel-card__title { font-size: 15.5px; font-weight: 700; color: var(--vs-ink); line-height: 1.3; }
.vs-rel-card__desc { font-size: 13px; color: var(--vs-muted); line-height: 1.55; }
.vs-rel-card__arrow {
    margin-left: auto;
    color: var(--vs-muted-2);
    flex: none;
    transition: transform .2s, color .2s;
}
.vs-rel-card__arrow svg { width: 18px; height: 18px; }
.vs-rel-card:hover .vs-rel-card__arrow { color: var(--vs-red); transform: translateX(3px); }

/* Other directions (cross-section chips) */
.vs-othersec-section { padding: 50px 0 70px; }
.vs-othersec {
    background: var(--vs-bg-soft);
    border: 1px solid var(--vs-line);
    border-radius: var(--vs-radius-lg);
    padding: 40px;
}
.vs-othersec__head { max-width: 620px; margin-bottom: 24px; }
.vs-othersec__head h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: -.6px;
    color: var(--vs-ink);
    margin-bottom: 8px;
}
.vs-othersec__head .vs-kicker { margin-bottom: 8px; }
.vs-othersec__head p { font-size: 15px; color: var(--vs-muted); line-height: 1.6; }
.vs-othersec__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.vs-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 30px;
    padding: 10px 18px 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vs-text);
    text-decoration: none;
    transition: all .2s;
}
.vs-chip:hover {
    border-color: var(--vs-red);
    color: var(--vs-red);
    transform: translateY(-2px);
    box-shadow: var(--vs-shadow-sm);
}
.vs-chip__ic {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--vs-bg-tint);
    display: grid; place-items: center;
    color: var(--vs-red);
    flex: none;
}
.vs-chip__ic svg { width: 16px; height: 16px; }

/* Closing CTA band */
.vs-cta-section { padding: 0 0 70px; }
.vs-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--vs-ink), var(--vs-ink-2));
    border-radius: var(--vs-radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.vs-cta::before {
    content: "";
    position: absolute;
    top: -120px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(192,36,29,.35), transparent 65%);
    pointer-events: none;
}
.vs-cta__text { position: relative; z-index: 1; max-width: 560px; }
.vs-cta__text h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -.8px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.vs-cta__text p { font-size: 15.5px; color: rgba(255,255,255,.72); line-height: 1.6; }
.vs-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

.vs-btn--white { background: #fff; color: var(--vs-ink); }
.vs-btn--white:hover { background: var(--vs-bg-soft); transform: translateY(-1px); }
.vs-btn--ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
}
.vs-btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Back link section */
.vs-backlink-section { padding: 0 0 60px; }

/* ==========================================================================
   Shared CTA band used on catalog + section pages (harmony)
   ========================================================================== */
.vs-cta-band-section { padding: 0 0 90px; }

/* --------------------------------------------------------------------------
   Element page — responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .vs-el-body { grid-template-columns: 1fr; gap: 36px; }
    .vs-el-aside { position: static; order: -1; }   /* lead card first on tablet */
    .vs-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .vs-feat-grid { grid-template-columns: 1fr; }
    .vs-rel-grid { grid-template-columns: 1fr; }
    .vs-othersec { padding: 28px 20px; }
    .vs-cta { padding: 32px 24px; }
    .vs-cta__actions { width: 100%; }
    .vs-cta__actions .vs-btn { flex: 1; justify-content: center; }
    .vs-rel-head { align-items: flex-start; }
}

/* ==========================================================================
   Element hero — visual variants
   ========================================================================== */

/* Two-column hero shell (used by Variant 1 "visual" and Variant 3 "infocard") */
.vs-el-hero2 {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.vs-el-hero2 .vs-el-head { max-width: 600px; }

/* ---- Variant 1: decorative visual ---- */
.vs-el-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
}
.vs-el-visual__stage {
    position: relative;
    width: 300px;
    height: 300px;
}
.vs-el-visual__ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.vs-el-visual__ring--1 {
    inset: 0;
    border: 1.5px dashed rgba(192,36,29,.20);
    animation: vs-spin 60s linear infinite;
}
.vs-el-visual__ring--2 {
    inset: 34px;
    border: 1.5px solid var(--vs-line);
    background: radial-gradient(circle at 50% 40%, rgba(240,128,26,.05), transparent 70%);
}
.vs-el-visual__dot {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: linear-gradient(var(--vs-red), var(--vs-orange));
    box-shadow: 0 4px 12px -2px rgba(192,36,29,.5);
}
.vs-el-visual__dot--a { top: 6px;  left: 50%; transform: translateX(-50%); }
.vs-el-visual__dot--b { top: 50%;  right: 2px; transform: translateY(-50%); width: 9px; height: 9px; }
.vs-el-visual__dot--c { bottom: 22px; left: 24px; width: 7px; height: 7px; opacity: .7; }
.vs-el-visual__tile {
    position: absolute;
    inset: 62px;
    border-radius: 34px;
    background: linear-gradient(150deg, #fff, var(--vs-bg-tint));
    border: 1px solid var(--vs-line);
    box-shadow: var(--vs-shadow-lg);
    display: grid; place-items: center;
    color: var(--vs-red);
    animation: vs-float 6s ease-in-out infinite;
}
.vs-el-visual__tile svg { width: 90px; height: 90px; }
.vs-el-visual__pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 30px;
    padding: 9px 15px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--vs-ink);
    box-shadow: var(--vs-shadow);
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vs-el-visual__pill--1 { top: 14px; right: -34px; animation: vs-float 4.5s ease-in-out infinite; }
.vs-el-visual__pill--2 { bottom: 26px; left: -44px; animation: vs-float 5.5s ease-in-out infinite .6s; }
.vs-el-visual__pill-ic {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(34,164,93,.12);
    display: grid; place-items: center;
    flex: none;
}
.vs-el-visual__pill-ic svg { width: 12px; height: 12px; color: var(--vs-green); }

@keyframes vs-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes vs-spin  { to { transform: rotate(360deg); } }

/* ---- Variant 2: stats strip (full-width hero) ---- */
.vs-el-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
    max-width: 720px;
}
.vs-el-stat {
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 14px;
    padding: 18px 20px;
}
.vs-el-stat b {
    display: block;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--vs-red);
    line-height: 1;
    margin-bottom: 6px;
}
.vs-el-stat span { font-size: 13px; color: var(--vs-muted); line-height: 1.3; }

/* ---- Variant 3: info card ("Что вы получаете") ---- */
.vs-el-infocard {
    background: #fff;
    border: 1px solid var(--vs-line);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--vs-shadow-lg);
}
.vs-el-infocard__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vs-line);
}
.vs-el-infocard__ic {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--vs-bg-tint);
    display: grid; place-items: center;
    color: var(--vs-red);
    flex: none;
}
.vs-el-infocard__ic svg { width: 26px; height: 26px; }
.vs-el-infocard__head span { font-size: 16px; font-weight: 700; color: var(--vs-ink); }
.vs-el-infocard__list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.vs-el-infocard__list li {
    display: flex; align-items: flex-start; gap: 11px;
    font-size: 14.5px; color: var(--vs-text); line-height: 1.45;
}
.vs-el-infocard__marker {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--vs-green);
    box-shadow: 0 0 0 4px rgba(34,164,93,.10);
    flex: none;
    margin: 7px 4px 0 3px;
}
.vs-el-infocard__foot {
    display: flex; align-items: center; gap: 9px;
    margin-top: 22px; padding-top: 20px;
    border-top: 1px solid var(--vs-line);
    font-size: 12.5px; color: var(--vs-muted);
}
.vs-el-infocard__foot svg { width: 15px; height: 15px; color: var(--vs-red); flex: none; }

/* ---- Responsive for hero variants ---- */
@media (max-width: 1024px) {
    .vs-el-hero2 { grid-template-columns: 1fr; gap: 40px; }
    .vs-el-visual { display: none; }                 /* decorative — drop on tablet/phone */
    .vs-el-infocard { order: 2; }
    .vs-el-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .vs-el-stats { grid-template-columns: 1fr 1fr; }
}

/* End */
/* /local/components/vdpo/services/templates/.default/style.css?178182568938089 */
