

/* Start:/local/components/kontur/blog.detail/templates/.default/style.css?1788295580104890*/

.bl_hero, .bl_list, .bl_detail-hero, .bl_detail-content,
.bl_related, .bl_pagination {
    --accent:         #00bea2;
    --accent-hover:   #00a88e;
    --accent-light:   rgba(0, 190, 162, 0.1);
    --bg-dark:        #013f54;
    --bg-light:       #f8f9fa;
    --text-main:      #1a1a2e;
    --text-secondary: #64748b;
    --white:          #ffffff;
    --border:         #e8ecf0;
}

/* ======================================================
   КОНТЕЙНЕР
   ====================================================== */
.bl_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================================================
   HERO СПИСКА
   ====================================================== */
.bl_hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.bl_hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bl_hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.bl_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.bl_hero-glow--1 {
    top: -20%;
    right: 5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0,190,162,0.16) 0%, transparent 70%);
}

.bl_hero-glow--2 {
    bottom: -30%;
    left: -5%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0,80,120,0.22) 0%, transparent 70%);
}

.bl_hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.bl_hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.35);
    border-radius: 100px;
    color: #7eeee0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.bl_hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: bl_pulse 2s ease-in-out infinite;
}

@keyframes bl_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.bl_hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.bl_hero-title-accent { color: var(--accent); }

.bl_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 500px;
}

/* ======================================================
   СПИСОК СТАТЕЙ
   ====================================================== */
.bl_list {
    padding: 64px 0 80px;
    background: var(--bg-light);
}

.bl_empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-secondary);
}

.bl_empty svg {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    opacity: 0.4;
    display: block;
}

.bl_empty p { font-size: 16px; }

/* ── Сетка карточек ── */
.bl_grid,
.bl_grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

/* ======================================================
   КАРТОЧКА СТАТЬИ
   ====================================================== */
.bl_card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.bl_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

/* Изображение */
.bl_card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-light);
    flex-shrink: 0;
    text-decoration: none;
}

.bl_card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.bl_card:hover .bl_card-img { transform: scale(1.04); }

/* Заглушка */
.bl_card-img-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #013f54 0%, #025270 100%);
}

.bl_card-img-placeholder--edo     { background: linear-gradient(135deg, #013f54 0%, #014d66 50%, #025270 100%); }
.bl_card-img-placeholder--marking { background: linear-gradient(135deg, #0d3b2e 0%, #0a5240 50%, #0d6b54 100%); }
.bl_card-img-placeholder--mp      { background: linear-gradient(135deg, #1a1060 0%, #2a1a8a 50%, #1e14a0 100%); }
.bl_card-img-placeholder--sign    { background: linear-gradient(135deg, #2d1b4e 0%, #3d2266 50%, #4a2878 100%); }
.bl_card-img-placeholder--1c      { background: linear-gradient(135deg, #3b1f00 0%, #5c3000 50%, #7a3f00 100%); }
.bl_card-img-placeholder--default { background: linear-gradient(135deg, #013f54 0%, #025270 100%); }

.bl_card-img-placeholder-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.bl_card-img-placeholder--mp   .bl_card-img-placeholder-glow { background: radial-gradient(circle, rgba(100,120,255,0.3) 0%, transparent 70%); }
.bl_card-img-placeholder--sign .bl_card-img-placeholder-glow { background: radial-gradient(circle, rgba(180,100,255,0.3) 0%, transparent 70%); }
.bl_card-img-placeholder--1c   .bl_card-img-placeholder-glow { background: radial-gradient(circle, rgba(255,140,0,0.3) 0%, transparent 70%); }
.bl_card-img-placeholder--marking .bl_card-img-placeholder-glow { background: radial-gradient(circle, rgba(0,200,120,0.3) 0%, transparent 70%); }

.bl_card-img-placeholder-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: transform 0.3s ease;
}

.bl_card-img-placeholder-icon svg { width: 24px; height: 24px; }
.bl_card:hover .bl_card-img-placeholder-icon { transform: scale(1.1); }

.bl_card-img-placeholder-label {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.5);
}

/* Тег поверх картинки */
.bl_card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--bg-dark);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Тело карточки */
.bl_card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bl_card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.bl_card-date svg { width: 13px; height: 13px; flex-shrink: 0; }

.bl_card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 12px;
}

.bl_card-title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.bl_card-title a:hover { color: var(--accent); }

.bl_card-preview {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.bl_card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.bl_card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.bl_card-link:hover svg { transform: translateX(4px); }

/* ── Анимационный блок в карточке ── */
.bl_card-animation {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #013f54;
}

/* ======================================================
   ПАГИНАЦИЯ
   ====================================================== */
.bl_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
}

.bl_pagination-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bl_pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.2s ease;
    cursor: pointer;
}

.bl_pagination-page:hover          { border-color: var(--accent); color: var(--accent); }
.bl_pagination-page--active        { background: var(--accent); color: var(--white); border-color: var(--accent); cursor: default; box-shadow: 0 4px 12px rgba(0,190,162,0.3); }

.bl_pagination-ellipsis {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    user-select: none;
}

.bl_pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.bl_pagination-arrow svg             { width: 18px; height: 18px; }
.bl_pagination-arrow:hover           { border-color: var(--accent); color: var(--accent); }
.bl_pagination-arrow--disabled       { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

/* ======================================================
   HERO ДЕТАЛЬНОЙ СТРАНИЦЫ
   ====================================================== */
.bl_detail-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.bl_detail-hero-bg   { position: absolute; inset: 0; z-index: 0; }

.bl_detail-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
    z-index: 0;
}

.bl_detail-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.bl_detail-hero-glow--1 { top: -20%; right: 5%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(0,190,162,0.16) 0%, transparent 70%); }
.bl_detail-hero-glow--2 { bottom: -30%; left: -5%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(0,80,120,0.25) 0%, transparent 70%); }

.bl_detail-hero .bl_container { position: relative; z-index: 1; width: 100%; }

.bl_detail-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.bl_detail-hero-left { display: flex; flex-direction: column; }

.bl_detail-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bl_detail-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.35);
    border-radius: 100px;
    color: #7eeee0;
    font-size: 12px;
    font-weight: 600;
}

.bl_detail-hero-tag-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: bl_pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.bl_detail-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.bl_detail-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}

.bl_detail-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bl_detail-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bl_detail-hero-btn svg { width: 16px; height: 16px; }
.bl_detail-hero-btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,190,162,0.3); }

.bl_detail-hero-share { display: flex; align-items: center; gap: 8px; }
.bl_detail-hero-share span { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; }

.bl_detail-hero-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.bl_detail-hero-share-btn svg { width: 16px; height: 16px; }
.bl_detail-hero-share-btn:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* Правая колонка hero */
.bl_detail-hero-right {
    animation: bl_heroImgIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

@keyframes bl_heroImgIn {
    from { opacity: 0; transform: translateX(30px) scale(0.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

.bl_detail-hero-img-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 16 / 10;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.bl_detail-hero-img-el { width: 100%; height: 100%; object-fit: cover; display: block; }

.bl_detail-hero-img-card--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.15);
}

.bl_detail-hero-img-card--placeholder svg { width: 64px; height: 64px; }

.bl_detail-hero-img-card--animation {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.bl_detail-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.bl_detail-date svg { width: 13px; height: 13px; }

/* Ссылка «Назад» */
.bl_back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.bl_back-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.bl_back-link:hover { color: var(--accent); }
.bl_back-link:hover svg { transform: translateX(-3px); }

/* Тег */
.bl_tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

/* ======================================================
   КОНТЕНТ ДЕТАЛЬНОЙ СТРАНИЦЫ
   ====================================================== */
.bl_detail-content {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.bl_detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.bl_detail-article { min-width: 0; }

.bl_detail-text {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.8;
}

/* Типографика */
.bl_detail-text h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--text-main); margin: 40px 0 16px; line-height: 1.3; letter-spacing: -0.5px; }
.bl_detail-text h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 600; color: var(--text-main); margin: 32px 0 12px; }
.bl_detail-text h4 { font-size: 17px; font-weight: 700; color: var(--text-main); margin: 24px 0 10px; }
.bl_detail-text p  { margin-bottom: 18px; }
.bl_detail-text ul, .bl_detail-text ol { padding-left: 24px; margin-bottom: 18px; }
.bl_detail-text li { margin-bottom: 8px; line-height: 1.4; }
.bl_detail-text ul li::marker { color: var(--accent); }
.bl_detail-text ol li::marker { color: var(--accent); font-weight: 700; }
.bl_detail-text a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.bl_detail-text a:hover { color: var(--accent-hover); }

.bl_detail-text blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: rgba(0,190,162,0.06);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    font-size: 16px;
    color: var(--text-main);
    font-style: italic;
}

.bl_detail-text img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; display: block; }

.bl_detail-text code { background: #f0f4f8; padding: 2px 7px; border-radius: 5px; font-size: 14px; font-family: 'Courier New', monospace; }

.bl_detail-text pre {
    background: #1e2a35;
    color: #e2e8f0;
    padding: 20px 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.6;
}

.bl_detail-text pre code { background: none; padding: 0; color: inherit; }

.bl_detail-text table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.bl_detail-text th   { background: var(--bg-dark); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.bl_detail-text td   { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-main); }
.bl_detail-text tr:nth-child(even) td { background: #f8f9fa; }

/* ── Кастомные блоки внутри текста ── */
.bl_detail-text .bl_lead {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.75;
    font-weight: 400;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 32px;
}

.bl_law-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(0,190,162,0.06);
    border: 1px solid rgba(0,190,162,0.25);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 28px 0;
}

.bl_law-note-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,190,162,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.bl_law-note-icon svg { width: 22px; height: 22px; }
.bl_law-note > div:last-child { flex: 1; }
.bl_law-note strong { display: block; font-size: 15px; color: var(--text-main); margin-bottom: 6px; }
.bl_law-note p      { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.bl_compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.bl_compare-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}

.bl_compare-item--accent { background: rgba(0,190,162,0.05); border-color: rgba(0,190,162,0.3); }

.bl_compare-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.bl_compare-item--accent .bl_compare-label { background: rgba(0,190,162,0.12); color: var(--accent); border-color: rgba(0,190,162,0.25); }
.bl_compare-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0 !important; }

.bl_example {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 28px 0;
    border: 1px solid var(--border);
}

.bl_example-label {
    display: inline-block;
    padding: 3px 12px;
    background: var(--bg-dark);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.bl_example p { font-size: 15px; color: var(--text-main); line-height: 1.7; margin: 0 !important; }

.bl_summary {
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 36px;
    position: relative;
    overflow: hidden;
}

.bl_summary::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bl_summary h4     { font-size: 16px !important; font-weight: 700 !important; color: var(--white) !important; margin: 0 0 16px !important; }
.bl_summary ul     { padding-left: 0 !important; margin: 0 !important; list-style: none !important; display: flex; flex-direction: column; gap: 10px; }
.bl_summary ul li  { display: flex; align-items: flex-start; gap: 10px; font-size: 14px !important; color: rgba(255,255,255,0.75) !important; line-height: 1.55; margin: 0 !important; }
.bl_summary ul li::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.bl_summary ul li::marker { display: none; }

/* Шаринг */
.bl_share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.bl_share-label { font-size: 13px; color: var(--text-secondary); font-weight: 600; white-space: nowrap; }

.bl_share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bl_share-btn svg { width: 18px; height: 18px; }
.bl_share-btn--vk:hover   { background: #0077ff; color: #fff; border-color: #0077ff; }
.bl_share-btn--tg:hover   { background: #29a8e9; color: #fff; border-color: #29a8e9; }
.bl_share-btn--copy:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.bl_share-btn--copy.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ======================================================
   SIDEBAR
   ====================================================== */
.bl_detail-sidebar {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bl_sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
}

.bl_sidebar-widget--cta {
    background: var(--bg-dark);
    border-color: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bl_sidebar-widget--cta::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.bl_sidebar-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.bl_sidebar-cta-icon svg { width: 24px; height: 24px; }
.bl_sidebar-widget--cta h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.bl_sidebar-widget--cta p  { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }

.bl_sidebar-cta-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.bl_sidebar-cta-btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,190,162,0.3); }

.bl_sidebar-title { font-size: 13px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 14px; }
.bl_sidebar-tags  { display: flex; flex-wrap: wrap; gap: 8px; }
.bl_sidebar-tags .bl_tag { background: var(--accent-light); border-color: rgba(0,190,162,0.2); }

/* ======================================================
   ПОХОЖИЕ СТАТЬИ
   ====================================================== */
.bl_related { padding: 60px 0 80px; }

.bl_related-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 36px;
}

/* ======================================================
   ART_* — БЛОКИ КОНТЕНТА СТАТЕЙ
   ====================================================== */

/* ── Пошаговая инструкция со скриншотами ── */
.art_steps-visual { padding: 72px 0; background: var(--bg-light); }
.art_steps-list   { display: flex; flex-direction: column; gap: 0; }

.art_step-block {
    position: relative;
    padding: 0 0 40px 72px;
}

.art_step-block:last-child { padding-bottom: 0; }

.art_step-block:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(0,190,162,0.15) 100%);
}

.art_step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; position: relative; }

.art_step-num {
    position: absolute;
    left: -72px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,190,162,0.35);
    z-index: 1;
}

.art_step-title   { font-size: 17px; font-weight: 700; color: var(--text-main); line-height: 1.3; }
.art_step-content { /* контейнер контента шага */ }

.art_step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 20px;
}

.art_step-block:not(.art_step-block--with-img) .art_step-desc { margin-bottom: 0; }

/* Подсказка внутри шага — уникально из addition2 */
.art_step-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0,190,162,0.07);
    border: 1px solid rgba(0,190,162,0.2);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    margin-top: 14px;
}

.art_step-tip svg  { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.art_step-tip span { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Скриншот */
.art_step-screenshot {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.art_step-screenshot:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.15); transform: translateY(-2px); }
.art_step-screenshot img   { display: block; width: 100%; height: auto; max-height: 320px; object-fit: cover; object-position: top; }

.art_step-screenshot-zoom {
    position: absolute;
    bottom: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(1,63,84,0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.art_step-screenshot-zoom svg { width: 16px; height: 16px; }
.art_step-screenshot:hover .art_step-screenshot-zoom { opacity: 1; }

.art_step-screenshots-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Сетка преимуществ ── */
.art_features      { padding: 72px 0; background: var(--white); }
.art_features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.art_feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.art_feature-card:hover { border-color: var(--accent); background: var(--white); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,190,162,0.1); }

.art_feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--accent);
    transition: background 0.3s ease;
}

.art_feature-card:hover .art_feature-icon { background: rgba(0,190,162,0.18); }
.art_feature-icon svg { width: 20px; height: 20px; }
.art_feature-card h3  { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; line-height: 1.3; }
.art_feature-card h4  { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; line-height: 1.3; }
.art_feature-card p   { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ── Сетка результатов кейса ── */
.art_features-grid--results { grid-template-columns: repeat(2, 1fr); }

.art_feature-card--result {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.art_feature-card--result::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-hover)); }
.art_feature-card--result:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,190,162,0.1); border-color: var(--accent); }

.art_result-before { font-size: 28px; font-weight: 800; color: #94a3b8; line-height: 1; text-decoration: line-through; text-decoration-color: #ef4444; }
.art_result-arrow  { color: var(--accent); flex-shrink: 0; }
.art_result-arrow svg { width: 20px; height: 20px; }
.art_result-after  { font-size: 32px; font-weight: 800; color: var(--text-main); line-height: 1; }
.art_result-label  { width: 100%; font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-top: 4px; }

.art_result-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 3px 10px;
    background: rgba(0,190,162,0.1);
    border: 1px solid rgba(0,190,162,0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

/* ── Цитата ── */
.art_quote {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--bg-dark);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.art_quote::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(0,190,162,0.12) 0%, transparent 70%); pointer-events: none; }

.art_quote-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.art_quote-icon svg { width: 20px; height: 20px; }
.art_quote-text     { font-size: 17px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.65; margin: 0 0 10px; position: relative; z-index: 1; }
.art_quote-author   { font-size: 13px; font-weight: 600; color: var(--accent); position: relative; z-index: 1; }

/* ── Лайтбокс ── */
.art_lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.art_lightbox.active { opacity: 1; pointer-events: all; }

.art_lightbox-overlay { position: absolute; inset: 0; background: rgba(1, 20, 30, 0.92); backdrop-filter: blur(6px); }

.art_lightbox-content {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.art_lightbox.active .art_lightbox-content { transform: scale(1); }
.art_lightbox-img { max-width: 100%; max-height: calc(90vh - 80px); border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,0.5); display: block; object-fit: contain; }
.art_lightbox-caption { font-size: 13px; color: rgba(255,255,255,0.55); text-align: center; max-width: 600px; line-height: 1.5; }

.art_lightbox-close {
    position: absolute;
    top: -16px; right: -16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.art_lightbox-close svg { width: 18px; height: 18px; }
.art_lightbox-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }

/* ── Таблица регламента ── */
.art_reg-table        { padding: 72px 0; background: var(--white); }
.art_reg-table-header { margin-bottom: 32px; }

.art_reg-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.art_reg-table-inner { width: 100%; border-collapse: collapse; font-size: 14px; }

.art_reg-table-inner thead tr { background: var(--bg-dark); }

.art_reg-table-inner th {
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.art_reg-table-inner th:first-child { border-radius: 16px 0 0 0; }
.art_reg-table-inner th:last-child  { border-radius: 0 16px 0 0; }

.art_reg-table-inner td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    vertical-align: top;
    line-height: 1.55;
}

.art_reg-table-inner tr:last-child td { border-bottom: none; }
.art_reg-table-inner tbody tr:nth-child(even) td { background: var(--bg-light); }
.art_reg-table-inner tbody tr:hover td { background: rgba(0,190,162,0.05); }
.art_reg-table-inner td:first-child { font-weight: 600; }
.art_reg-table-inner td:last-child  { color: var(--text-secondary); font-size: 13px; }

/* ── Prose-секции (читабельные статьи) ── */
.art_prose,
.art_prose-section { padding: 32px 0; background: var(--white); }

.art_prose-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 740px;
}

/* ── Highlight-врезка ── */
.art_highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    margin: 28px 0;
}

.art_highlight-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.art_highlight-icon svg { width: 22px; height: 22px; }
.art_highlight-body     { flex: 1; }
.art_highlight-title    { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 12px; }

.art_highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.art_highlight-list li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.art_highlight-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── Prose-note (жёлтая заметка) ── */
.art_prose-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    margin-top: 24px;
}

.art_prose-note svg { width: 18px; height: 18px; color: #d97706; flex-shrink: 0; margin-top: 2px; }
.art_prose-note p   { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.art_prose-note p strong { color: var(--text-main); }

/* ── Чек-лист ── */
.art_checklist {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 28px;
}

.art_checklist-title {
    padding: 16px 24px;
    background: var(--bg-dark);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
}

.art_checklist-items { display: flex; flex-direction: column; }

.art_checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.art_checklist-item:last-child { border-bottom: none; }
.art_checklist-item:hover { background: var(--bg-light); }

.art_checklist-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid rgba(0, 190, 162, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.art_checklist-icon svg { width: 13px; height: 13px; }

.art_checklist-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.art_checklist-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
    .bl_detail-hero-wrapper { grid-template-columns: 1fr; }
    .bl_detail-hero-right   { display: none; }
    .bl_detail-hero         { padding: 64px 0 72px; min-height: auto; }
    .bl_detail-layout       { grid-template-columns: 1fr; }
    .bl_detail-sidebar      { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .bl_grid,
    .bl_grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .art_features-grid          { grid-template-columns: 1fr 1fr; }
    .art_features-grid--results { grid-template-columns: 1fr; }
    .art_step-screenshots-row   { grid-template-columns: 1fr; }

    .art_step-block { padding-left: 56px; }
    .art_step-num   { left: -56px; width: 40px; height: 40px; font-size: 16px; }
    .art_step-block:not(:last-child)::before { left: 19px; }

    .art_highlight       { flex-direction: column; gap: 14px; padding: 20px; }
    .art_quote           { flex-direction: column; padding: 24px; }

    .art_checklist-item  { padding: 14px 18px; }
    .art_checklist-title { padding: 14px 18px; }

    .art_reg-table-inner th,
    .art_reg-table-inner td { padding: 12px 14px; font-size: 13px; }
    .art_reg-table-inner th:last-child,
    .art_reg-table-inner td:last-child { display: none; }

    .bl_compare { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .bl_grid,
    .bl_grid--3     { grid-template-columns: 1fr; }
    .bl_detail-sidebar { grid-template-columns: 1fr; }

    .bl_pagination-pages { gap: 4px; }
    .bl_pagination-page,
    .bl_pagination-arrow { width: 36px; height: 36px; font-size: 13px; }

    .bl_detail-hero { padding: 56px 0 60px; }
}

@media (max-width: 480px) {
    .art_features-grid  { grid-template-columns: 1fr; }
    .art_lightbox-close { top: -48px; right: 0; }
}

/* Предупреждение в пошаговой инструкции */
.art_how-warning {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    gap: 14px;

    margin-top: 28px;
    padding: 18px 20px;

    border: 1px solid rgba(255, 184, 77, 0.42);
    border-left: 4px solid #f4ae3d;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        rgba(255, 248, 235, 0.96),
        rgba(255, 255, 255, 0.96)
    );
    color: #263b57;
}

.art_how-warning > svg {
    display: block;
    flex: 0 0 28px;

    width: 28px !important;
    min-width: 28px;
    height: 28px !important;

    margin-top: 2px;
    color: #e6971d;
}

.art_how-warning p {
    margin: 0;
    color: #263b57;
    font-size: 16px;
    line-height: 1.65;
}

.art_how-warning strong {
    color: #102a4a;
    font-weight: 700;
}

@media (max-width: 640px) {
    .art_how-warning {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 12px;
        margin-top: 22px;
        padding: 16px;
        border-radius: 12px;
    }

    .art_how-warning > svg {
        width: 24px !important;
        min-width: 24px;
        height: 24px !important;
    }

    .art_how-warning p {
        font-size: 15px;
        line-height: 1.58;
    }
}


.edo-article {
    --edo-navy: var(--bl-navy, #013f54);
    --edo-navy-deep: var(--bl-navy-deep, #012f40);
    --edo-turquoise: var(--bl-turquoise, #00bea2);
    --edo-turquoise-dark: var(--bl-turquoise-dark, #009d87);
    --edo-turquoise-soft: var(--bl-turquoise-soft, #e7fbf7);
    --edo-ink: var(--bl-ink, #10243b);
    --edo-muted: var(--bl-muted, #607186);
    --edo-line: var(--bl-line, #dce6eb);
    --edo-surface: var(--bl-surface, #f4f8fa);
    --edo-white: #fff;
    color: var(--edo-ink);
    font-size: 16px;
    line-height: 1.72;
}

.edo-article *,
.edo-article *::before,
.edo-article *::after {
    box-sizing: border-box;
}

.edo-article section {
    margin: 0;
}

.edo-article p,
.edo-article h2,
.edo-article h3,
.edo-article ol,
.edo-article ul {
    margin-top: 0;
}

.edo-article h2 {
    margin-bottom: 16px;
    color: var(--edo-navy-deep);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 760;
    line-height: 1.14;
    letter-spacing: -.035em;
    text-wrap: balance;
    scroll-margin-top: 32px;
}

.edo-article h3 {
    color: var(--edo-ink);
    font-size: 19px;
    font-weight: 730;
    line-height: 1.3;
}

.edo-intro {
    position: relative;
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid rgba(0, 190, 162, .2);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 190, 162, .22), transparent 32%),
        linear-gradient(145deg, #f7fffd 0%, #eef8f9 100%);
    overflow: hidden;
}

.edo-intro::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 210px;
    height: 210px;
    border: 34px solid rgba(1, 63, 84, .045);
    border-radius: 50%;
    pointer-events: none;
}

.edo-intro__eyebrow,
.edo-section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--edo-turquoise-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.edo-intro__eyebrow::before,
.edo-section__label::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.edo-intro__lead {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-bottom: 30px;
    color: #365268;
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.72;
}

.edo-flow {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.edo-flow__item {
    position: relative;
    min-height: 170px;
    padding: 22px;
    border: 1px solid rgba(1, 63, 84, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 30px rgba(1, 63, 84, .06);
}

.edo-flow__number {
    display: block;
    margin-bottom: 18px;
    color: var(--edo-turquoise-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.edo-flow__item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--edo-navy);
    font-size: 18px;
}

.edo-flow__item p {
    margin-bottom: 0;
    color: var(--edo-muted);
    font-size: 14px;
    line-height: 1.55;
}

.edo-flow__arrow {
    display: none;
}

.edo-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px 22px;
    border: 1px solid var(--edo-line);
    border-radius: 16px;
    background: var(--edo-white);
}

.edo-note svg {
    width: 28px;
    height: 28px;
    color: var(--edo-turquoise-dark);
}

.edo-note p {
    margin-bottom: 0;
    color: #3f566b;
}

.edo-note--accent {
    position: relative;
    z-index: 1;
    border-color: rgba(0, 190, 162, .25);
}

.edo-note--soft {
    background: var(--edo-turquoise-soft);
    border-color: rgba(0, 190, 162, .18);
}

.edo-section {
    padding: clamp(64px, 9vw, 104px) 0 0;
}

.edo-section__heading {
    max-width: 820px;
    margin-bottom: 30px;
}

.edo-section__heading > p {
    margin-bottom: 0;
    color: var(--edo-muted);
    font-size: 18px;
    line-height: 1.65;
}

.edo-doc-grid,
.edo-answer-grid,
.edo-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.edo-doc-card {
    padding: 28px;
    border: 1px solid var(--edo-line);
    border-radius: 22px;
    background: var(--edo-white);
    box-shadow: 0 14px 34px rgba(1, 63, 84, .07);
}

.edo-doc-card--primary {
    border-color: rgba(0, 190, 162, .28);
    background: linear-gradient(145deg, var(--edo-white), var(--edo-turquoise-soft));
}

.edo-doc-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 15px;
    color: var(--edo-turquoise-dark);
    background: var(--edo-turquoise-soft);
}

.edo-doc-card__icon svg {
    width: 27px;
    height: 27px;
}

.edo-doc-card h3 {
    margin-bottom: 10px;
}

.edo-doc-card p {
    margin-bottom: 0;
    color: var(--edo-muted);
}

.edo-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.edo-chip-list span {
    padding: 9px 14px;
    border: 1px solid var(--edo-line);
    border-radius: 999px;
    color: #38546a;
    font-size: 14px;
    font-weight: 650;
    background: #f8fbfc;
}

.edo-steps {
    position: relative;
    display: grid;
    gap: 14px;
}

.edo-steps::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 31px;
    width: 2px;
    background: linear-gradient(var(--edo-turquoise), rgba(0, 190, 162, .08));
}

.edo-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px 22px 0;
    border: 1px solid var(--edo-line);
    border-radius: 18px;
    background: var(--edo-white);
}

.edo-step__number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0 auto;
    place-items: center;
    border: 5px solid var(--edo-white);
    border-radius: 50%;
    color: var(--edo-white);
    font-size: 14px;
    font-weight: 800;
    background: var(--edo-turquoise-dark);
    box-shadow: 0 0 0 1px rgba(0, 190, 162, .22);
}

.edo-step__body h3 {
    margin-bottom: 6px;
}

.edo-step__body p {
    margin-bottom: 0;
    color: var(--edo-muted);
}

.edo-answer-card {
    min-height: 100%;
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--edo-line);
    border-radius: 24px;
    background: var(--edo-white);
    box-shadow: 0 16px 38px rgba(1, 63, 84, .08);
}

.edo-answer-card--dark {
    border-color: transparent;
    color: rgba(255, 255, 255, .76);
    background:
        radial-gradient(circle at 95% 5%, rgba(0, 190, 162, .33), transparent 36%),
        linear-gradient(145deg, var(--edo-navy), var(--edo-navy-deep));
}

.edo-answer-card__mark {
    display: inline-grid;
    min-width: 46px;
    height: 32px;
    margin-bottom: 24px;
    padding: 0 12px;
    place-items: center;
    border-radius: 999px;
    color: var(--edo-turquoise-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    background: var(--edo-turquoise-soft);
}

.edo-answer-card--dark .edo-answer-card__mark {
    color: #7ff6e6;
    background: rgba(255, 255, 255, .1);
}

.edo-answer-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.edo-answer-card--dark h3 {
    color: var(--edo-white)!important;
}

.edo-answer-card p {
    color: var(--edo-muted);
}

.edo-answer-card p:last-child {
    margin-bottom: 0;
}

.edo-answer-card--dark p {
    color: rgba(255, 255, 255, .74);
}

.edo-route-card {
    padding: 28px;
    border: 1px solid var(--edo-line);
    border-radius: 22px;
    background: var(--edo-white);
}

.edo-route-card--accent {
    border-color: rgba(0, 190, 162, .28);
    background: linear-gradient(145deg, #f9fffd, var(--edo-turquoise-soft));
}

.edo-route-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.edo-route-card__top svg {
    width: 34px;
    height: 34px;
    color: var(--edo-turquoise-dark);
}

.edo-route-card__status {
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--edo-navy);
    font-size: 12px;
    font-weight: 750;
    background: #eef5f7;
}

.edo-route-card h3 {
    margin-bottom: 12px;
}

.edo-route-card p,
.edo-route-card li {
    color: var(--edo-muted);
}

.edo-route-card p:last-child,
.edo-route-card ol {
    margin-bottom: 0;
}

.edo-route-card ol {
    padding-left: 21px;
}

.edo-route-card li + li {
    margin-top: 7px;
}

.edo-route-grid + .edo-note,
.edo-status-line + .edo-note {
    margin-top: 18px;
}

.edo-status-line {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.edo-status-card {
    position: relative;
    padding: 24px 20px;
    border: 1px solid var(--edo-line);
    border-radius: 18px;
    background: var(--edo-white);
}

.edo-status-card__dot {
    display: block;
    width: 11px;
    height: 11px;
    margin-bottom: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #80a0ad;
    box-shadow: 0 0 0 2px #80a0ad;
}

.edo-status-card--success .edo-status-card__dot {
    background: var(--edo-turquoise);
    box-shadow: 0 0 0 2px var(--edo-turquoise);
}

.edo-status-card--warning .edo-status-card__dot {
    background: #ef9e45;
    box-shadow: 0 0 0 2px #ef9e45;
}

.edo-status-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.edo-status-card p {
    margin-bottom: 0;
    color: var(--edo-muted);
    font-size: 14px;
    line-height: 1.55;
}

.edo-decision {
    display: grid;
    gap: 16px;
}

.edo-decision__card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--edo-line);
    border-radius: 20px;
    background: var(--edo-white);
}

.edo-decision__card--important {
    border-color: rgba(0, 190, 162, .28);
    background: linear-gradient(135deg, #fff, #f2fdfa);
}

.edo-decision__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 16px;
}

.edo-decision__icon svg {
    width: 28px;
    height: 28px;
}

.edo-decision__icon--before {
    color: #a06a26;
    background: #fff4e6;
}

.edo-decision__icon--after {
    color: var(--edo-turquoise-dark);
    background: var(--edo-turquoise-soft);
}

.edo-decision__label {
    display: block;
    margin-bottom: 5px;
    color: var(--edo-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.edo-decision h3 {
    margin-bottom: 8px;
}

.edo-decision p {
    margin-bottom: 0;
    color: var(--edo-muted);
}

.edo-alert {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    padding: 24px;
    border: 1px solid #f2d3aa;
    border-radius: 18px;
    background: #fff9f1;
}

.edo-alert__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #9c621c;
    font-weight: 900;
    background: #ffe4bd;
}

.edo-alert h3 {
    margin-bottom: 6px;
    color: #784916;
}

.edo-alert p {
    margin-bottom: 0;
    color: #765c3d;
}

.edo-mini-guide {
    margin-top: 18px;
    padding: 26px;
    border-radius: 20px;
    color: rgba(255, 255, 255, .78);
    background: linear-gradient(145deg, var(--edo-navy), var(--edo-navy-deep));
}

.edo-mini-guide h3 {
    margin-bottom: 14px;
    color: var(--edo-white)!important;
}

.edo-mini-guide ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    margin-bottom: 0;
    padding-left: 20px;
}

.edo-mini-guide li::marker {
    color: #68e7d5;
}

.edo-storage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.edo-storage-card {
    padding: 26px;
    border: 1px solid var(--edo-line);
    border-radius: 20px;
    background: var(--edo-white);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.edo-storage-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 190, 162, .3);
    box-shadow: 0 14px 34px rgba(1, 63, 84, .09);
}

.edo-storage-card > svg {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    color: var(--edo-turquoise-dark);
}

.edo-storage-card h3 {
    margin-bottom: 8px;
}

.edo-storage-card p {
    margin-bottom: 0;
    color: var(--edo-muted);
}

.edo-checklist {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 6vw, 70px);
    margin-top: clamp(70px, 10vw, 116px) !important;
    padding: clamp(32px, 6vw, 58px);
    border-radius: 28px;
    color: rgba(255, 255, 255, .76);
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 190, 162, .3), transparent 34%),
        linear-gradient(145deg, var(--edo-navy), var(--edo-navy-deep));
    overflow: hidden;
}

.edo-checklist::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 270px;
    height: 270px;
    border: 44px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    pointer-events: none;
}

.edo-checklist .edo-section__label {
    color: #67ead8;
}

.edo-checklist h2 {
    color: var(--edo-white)!important;
}

.edo-checklist__content,
.edo-checklist__list,
.edo-checklist__footer {
    position: relative;
    z-index: 1;
}

.edo-checklist__content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
}

.edo-checklist__list {
    display: grid;
    gap: 11px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.edo-checklist__list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .055);
}

.edo-checklist__list span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--edo-navy);
    font-size: 13px;
    font-weight: 900;
    background: #68e7d5;
}

.edo-checklist__footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.edo-checklist__footer svg {
    width: 30px;
    height: 30px;
    color: #68e7d5;
}

.edo-checklist__footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 900px) {
    .edo-flow,
    .edo-status-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edo-storage-grid {
        grid-template-columns: 1fr;
    }

    .edo-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .edo-article {
        font-size: 15px;
    }

    .edo-intro {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .edo-flow,
    .edo-doc-grid,
    .edo-answer-grid,
    .edo-route-grid,
    .edo-status-line {
        grid-template-columns: 1fr;
    }

    .edo-flow__item {
        min-height: 0;
    }

    .edo-section {
        padding-top: 62px;
    }

    .edo-section__heading > p {
        font-size: 16px;
    }

    .edo-step {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
        padding-right: 18px;
    }

    .edo-steps::before {
        left: 25px;
    }

    .edo-decision__card {
        grid-template-columns: 1fr;
    }

    .edo-mini-guide ul {
        grid-template-columns: 1fr;
    }

    .edo-checklist {
        padding: 30px 22px;
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .edo-storage-card {
        transition: none;
    }
}

.logi-article {
    --lg-navy: var(--bl-navy, #013f54);
    --lg-deep: var(--bl-navy-deep, #012f40);
    --lg-teal: var(--bl-turquoise, #00bea2);
    --lg-teal-dark: var(--bl-turquoise-dark, #009d87);
    --lg-soft: var(--bl-turquoise-soft, #e7fbf7);
    --lg-ink: var(--bl-ink, #10243b);
    --lg-muted: var(--bl-muted, #607186);
    --lg-line: var(--bl-line, #dce6eb);
    --lg-white: #fff;
    color: var(--lg-ink);
    font-size: 16px;
    line-height: 1.7;
}

.logi-article *,
.logi-article *::before,
.logi-article *::after { box-sizing: border-box; }
.logi-article section { margin: 0; }
.logi-article h2,
.logi-article h3,
.logi-article p,
.logi-article ol { margin-top: 0; }
.logi-article h2 {
    margin-bottom: 16px;
    color: var(--lg-deep);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 760;
    line-height: 1.14;
    letter-spacing: -.035em;
    text-wrap: balance;
    scroll-margin-top: 32px;
}
.logi-article h3 {
    color: var(--lg-ink);
    font-size: 19px;
    font-weight: 730;
    line-height: 1.3;
}
.logi-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--lg-teal-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.logi-kicker::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

/* Лид и маршрут груза */
.logi-lead {
    position: relative;
    padding: clamp(32px, 5vw, 58px);
    border: 1px solid rgba(0, 190, 162, .2);
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 5%, rgba(0, 190, 162, .22), transparent 35%),
        linear-gradient(145deg, #f8fffd, #edf7f8);
    overflow: hidden;
}
.logi-lead::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -115px;
    width: 300px;
    height: 300px;
    border: 46px solid rgba(1, 63, 84, .04);
    border-radius: 50%;
    pointer-events: none;
}
.logi-lead__content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}
.logi-lead__content > p { color: #466075; }
.logi-lead__text {
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.7;
}
.logi-lead__route {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 120px 1fr 120px 1fr 120px;
    align-items: center;
    gap: 12px;
    margin: 34px 0 20px;
    padding: 26px;
    border: 1px solid rgba(1, 63, 84, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 16px 38px rgba(1, 63, 84, .07);
}
.logi-route-node {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--lg-navy);
    font-size: 13px;
    font-weight: 750;
}
.logi-route-node svg {
    width: 38px;
    height: 38px;
    color: var(--lg-teal-dark);
}
.logi-route-node--truck svg { width: 47px; }
.logi-route-line {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 190, 162, .2), var(--lg-teal), rgba(0, 190, 162, .2));
}
.logi-route-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--lg-teal-dark);
    border-right: 2px solid var(--lg-teal-dark);
    transform: translateY(-50%) rotate(45deg);
}
.logi-route-document {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    padding-top: 20px;
    border-top: 1px solid var(--lg-line);
    color: var(--lg-navy);
}
.logi-route-document small { color: var(--lg-muted); }
.logi-route-document__pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lg-teal);
    box-shadow: 0 0 0 6px rgba(0, 190, 162, .12);
}
.logi-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.logi-benefits article {
    padding: 18px;
    border: 1px solid rgba(0, 190, 162, .16);
    border-radius: 15px;
    background: rgba(231, 251, 247, .66);
}
.logi-benefits strong,
.logi-benefits span { display: block; }
.logi-benefits strong {
    margin-bottom: 5px;
    color: var(--lg-navy);
    font-size: 15px;
}
.logi-benefits span {
    color: var(--lg-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Общие секции */
.logi-section { padding: clamp(68px, 9vw, 106px) 0 0; }
.logi-heading {
    max-width: 850px;
    margin-bottom: 30px;
}
.logi-heading > p {
    margin-bottom: 0;
    color: var(--lg-muted);
    font-size: 18px;
    line-height: 1.65;
}
.logi-callout {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-top: 18px;
    padding: 21px 23px;
    border: 1px solid rgba(0, 190, 162, .22);
    border-radius: 17px;
    background: var(--lg-soft);
}
.logi-callout svg {
    width: 29px;
    height: 29px;
    color: var(--lg-teal-dark);
}
.logi-callout p {
    margin-bottom: 0;
    color: #3f5b6d;
}

/* ЭДО и ЭПД */
.logi-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.logi-system-card {
    padding: 30px;
    border: 1px solid var(--lg-line);
    border-radius: 23px;
    background: var(--lg-white);
    box-shadow: 0 15px 38px rgba(1, 63, 84, .07);
}
.logi-system-card--epd {
    border-color: rgba(0, 190, 162, .3);
    background: linear-gradient(145deg, #fff, var(--lg-soft));
}
.logi-system-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.logi-system-card__head svg {
    width: 38px;
    height: 38px;
    color: var(--lg-teal-dark);
}
.logi-system-card__mark {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--lg-navy);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    background: #edf4f6;
}
.logi-system-card--epd .logi-system-card__mark {
    color: var(--lg-teal-dark);
    background: rgba(0, 190, 162, .12);
}
.logi-system-card h3 {
    margin-bottom: 11px;
    font-size: 22px;
}
.logi-system-card p { color: var(--lg-muted); }
.logi-system-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.logi-system-card__tags span {
    padding: 6px 10px;
    border: 1px solid var(--lg-line);
    border-radius: 999px;
    color: #405c70;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, .7);
}

/* Участники ЭТрН */
.logi-party-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.logi-party-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--lg-line);
    border-radius: 21px;
    background: var(--lg-white);
    overflow: hidden;
}
.logi-party-card--active {
    border-color: rgba(0, 190, 162, .3);
    background: linear-gradient(145deg, #fff, var(--lg-soft));
    box-shadow: 0 15px 38px rgba(1, 63, 84, .08);
}
.logi-party-card__number {
    position: absolute;
    right: 18px;
    top: 12px;
    color: rgba(1, 63, 84, .07);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}
.logi-party-card__icon {
    display: grid;
    width: 53px;
    height: 53px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 16px;
    color: var(--lg-teal-dark);
    background: var(--lg-soft);
}
.logi-party-card__icon svg {
    width: 29px;
    height: 29px;
}
.logi-party-card h3 { margin-bottom: 8px; }
.logi-party-card p {
    margin-bottom: 0;
    color: var(--lg-muted);
}
.logi-warning {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    padding: 23px;
    border: 1px solid #f1d4ac;
    border-radius: 18px;
    background: #fff9f1;
}
.logi-warning__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #93601e;
    font-weight: 900;
    background: #ffe5bf;
}
.logi-warning strong {
    display: block;
    margin-bottom: 5px;
    color: #784916;
}
.logi-warning p {
    margin-bottom: 0;
    color: #765d3e;
}

/* Маршрут документов */
.logi-timeline {
    position: relative;
    display: grid;
    gap: 13px;
}
.logi-timeline::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(var(--lg-teal), rgba(0, 190, 162, .08));
}
.logi-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 17px;
    padding: 22px 24px 22px 0;
    border: 1px solid var(--lg-line);
    border-radius: 18px;
    background: var(--lg-white);
}
.logi-timeline__num {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    margin: auto;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    background: var(--lg-teal-dark);
    box-shadow: 0 0 0 1px rgba(0, 190, 162, .2);
}
.logi-timeline__num svg {
    width: 20px;
    height: 20px;
}
.logi-timeline__item span {
    display: block;
    margin-bottom: 3px;
    color: var(--lg-teal-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.logi-timeline__item h3 { margin-bottom: 6px; }
.logi-timeline__item p {
    margin-bottom: 0;
    color: var(--lg-muted);
}
.logi-timeline__item--finish {
    border-color: rgba(0, 190, 162, .28);
    background: linear-gradient(135deg, #fff, var(--lg-soft));
}
.logi-close-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 18px;
}
.logi-close-grid article {
    padding: 24px;
    border: 1px solid var(--lg-line);
    border-radius: 18px;
    background: #f8fbfc;
}
.logi-close-grid span {
    color: var(--lg-teal-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.logi-close-grid h3 { margin: 5px 0 8px; }
.logi-close-grid p {
    margin-bottom: 0;
    color: var(--lg-muted);
}

/* Схема интеграции */
.logi-integration {
    display: grid;
    grid-template-columns: minmax(0, .85fr) 50px minmax(230px, .7fr) minmax(0, .8fr);
    align-items: center;
    gap: 14px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(0, 190, 162, .2);
    border-radius: 26px;
    background:
        radial-gradient(circle at 55% 35%, rgba(0, 190, 162, .13), transparent 35%),
        linear-gradient(145deg, #f9fffd, #eef6f8);
}
.logi-integration__sources {
    display: grid;
    gap: 11px;
}
.logi-integration__sources article {
    padding: 15px 17px;
    border: 1px solid var(--lg-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(1, 63, 84, .05);
}
.logi-integration__sources strong,
.logi-integration__sources span { display: block; }
.logi-integration__sources strong { color: var(--lg-navy); }
.logi-integration__sources span {
    color: var(--lg-muted);
    font-size: 12px;
    line-height: 1.45;
}
.logi-integration__connector {
    display: grid;
    gap: 45px;
}
.logi-integration__connector span {
    position: relative;
    height: 2px;
    background: var(--lg-teal);
}
.logi-integration__connector span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--lg-teal-dark);
    border-right: 2px solid var(--lg-teal-dark);
    transform: translateY(-50%) rotate(45deg);
}
.logi-integration__hub {
    position: relative;
    display: grid;
    min-height: 210px;
    padding: 28px;
    place-items: center;
    align-content: center;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--lg-navy), var(--lg-deep));
    box-shadow: 0 20px 45px rgba(1, 63, 84, .2);
}
.logi-integration__hub strong, .logi-final strong{
    color: #fff!important;
}
.logi-integration__hub-ring {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(104, 231, 213, .3);
    border-radius: 50%;
}
.logi-integration__hub svg {
    width: 43px;
    height: 43px;
    margin-bottom: 10px;
    color: #68e7d5;
}
.logi-integration__hub strong,
.logi-integration__hub span {
    position: relative;
    display: block;
}
.logi-integration__hub span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}
.logi-integration__result {
    display: grid;
    gap: 10px;
}
.logi-integration__result span {
    position: relative;
    padding: 11px 13px 11px 31px;
    border: 1px solid var(--lg-line);
    border-radius: 11px;
    color: #456074;
    font-size: 13px;
    font-weight: 650;
    background: #fff;
}
.logi-integration__result span::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lg-teal);
    transform: translateY(-50%);
}
.logi-integration__caption {
    margin: 15px 0 0;
    color: var(--lg-muted);
    font-size: 14px;
    text-align: center;
}

/* Роли */
.logi-role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.logi-role-grid article {
    padding: 27px;
    border: 1px solid var(--lg-line);
    border-radius: 20px;
    background: #fff;
}
.logi-role-grid__icon {
    display: grid;
    width: 51px;
    height: 51px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 15px;
    color: var(--lg-teal-dark);
    background: var(--lg-soft);
}
.logi-role-grid__icon svg {
    width: 28px;
    height: 28px;
}
.logi-role-grid h3 { margin-bottom: 8px; }
.logi-role-grid p {
    margin-bottom: 0;
    color: var(--lg-muted);
}
.logi-callout--dark {
    border-color: transparent;
    color: rgba(255, 255, 255, .76);
    background: linear-gradient(145deg, var(--lg-navy), var(--lg-deep));
}
.logi-callout--dark svg { color: #68e7d5; }
.logi-callout--dark p { color: rgba(255, 255, 255, .75); }
.logi-callout--dark strong { color: #fff!important; }

/* Роуминг */
.logi-roaming {
    display: grid;
    grid-template-columns: 1fr minmax(160px, .55fr) 1fr;
    align-items: center;
    gap: 18px;
    padding: 32px;
    border: 1px solid var(--lg-line);
    border-radius: 23px;
    background: #f8fbfc;
}
.logi-roaming__operator {
    padding: 26px;
    border: 1px solid var(--lg-line);
    border-radius: 17px;
    color: var(--lg-navy);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    background: #fff;
    box-shadow: 0 12px 28px rgba(1, 63, 84, .06);
}
.logi-roaming__bridge {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 2px;
    color: var(--lg-teal-dark);
    text-align: center;
}
.logi-roaming__bridge::before,
.logi-roaming__bridge::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
    background: var(--lg-teal);
}
.logi-roaming__bridge::before { left: -4px; }
.logi-roaming__bridge::after { right: -4px; }
.logi-roaming__bridge span {
    display: block;
    width: 48px;
    height: 48px;
    border: 12px solid var(--lg-soft);
    border-radius: 50%;
    background: var(--lg-teal);
    box-shadow: 0 0 0 1px rgba(0, 190, 162, .3);
}
.logi-roaming__bridge strong,
.logi-roaming__bridge small {
    position: relative;
    z-index: 1;
    background: #f8fbfc;
}
.logi-roaming__bridge small { color: var(--lg-muted); }
.logi-check-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}
.logi-check-strip span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 14px;
    border: 1px solid var(--lg-line);
    border-radius: 12px;
    color: #466075;
    font-size: 13px;
    background: #fff;
}
.logi-check-strip b {
    display: grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    background: var(--lg-teal-dark);
}
.logi-fineprint {
    margin: 15px 0 0;
    color: var(--lg-muted);
    font-size: 13px;
}

/* Архив */
.logi-archive {
    padding: clamp(23px, 4vw, 38px);
    border: 1px solid var(--lg-line);
    border-radius: 24px;
    background: linear-gradient(145deg, #f9fbfc, #edf4f6);
}
.logi-archive__search {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 15px 17px;
    border: 1px solid var(--lg-line);
    border-radius: 14px;
    color: #8a9aa8;
    background: #fff;
    box-shadow: 0 12px 28px rgba(1, 63, 84, .06);
}
.logi-archive__search svg {
    width: 23px;
    height: 23px;
    color: var(--lg-teal-dark);
}
.logi-archive__search kbd {
    padding: 4px 8px;
    border: 1px solid var(--lg-line);
    border-radius: 6px;
    color: var(--lg-muted);
    font-family: inherit;
    font-size: 11px;
    background: #f5f8f9;
}
.logi-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 20px;
}
.logi-archive__filters span {
    padding: 7px 11px;
    border: 1px solid var(--lg-line);
    border-radius: 999px;
    color: #506879;
    font-size: 12px;
    background: rgba(255, 255, 255, .75);
}
.logi-archive__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.logi-archive__cards article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 17px;
    border: 1px solid var(--lg-line);
    border-radius: 14px;
    background: #fff;
}
.logi-archive__cards svg {
    width: 29px;
    height: 29px;
    color: var(--lg-teal-dark);
}
.logi-archive__cards strong,
.logi-archive__cards span { display: block; }
.logi-archive__cards strong {
    color: var(--lg-navy);
    font-size: 14px;
}
.logi-archive__cards span {
    color: var(--lg-muted);
    font-size: 11px;
    line-height: 1.4;
}

/* Ошибки и запуск */
.logi-mistakes {
    padding: 27px;
    border: 1px solid #f1d4ac;
    border-radius: 21px;
    background: #fff9f1;
}
.logi-mistakes h3 {
    margin-bottom: 17px;
    color: #784916;
}
.logi-mistakes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}
.logi-mistakes__grid span {
    position: relative;
    padding-left: 23px;
    color: #765d3e;
}
.logi-mistakes__grid span::before {
    content: "×";
    position: absolute;
    left: 0;
    top: -1px;
    color: #d47d35;
    font-size: 19px;
    font-weight: 800;
}
.logi-launch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.logi-launch li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 21px;
    border: 1px solid var(--lg-line);
    border-radius: 17px;
    background: #fff;
}
.logi-launch > li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--lg-teal-dark);
    font-size: 12px;
    font-weight: 850;
    background: var(--lg-soft);
}
.logi-launch h3 {
    margin-bottom: 5px;
    font-size: 17px;
}
.logi-launch p {
    margin-bottom: 0;
    color: var(--lg-muted);
    font-size: 14px;
}
.logi-final {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 18px;
    padding: 29px;
    border-radius: 22px;
    color: rgba(255, 255, 255, .75);
    background:
        radial-gradient(circle at 95% 5%, rgba(0, 190, 162, .28), transparent 34%),
        linear-gradient(145deg, var(--lg-navy), var(--lg-deep));
}
.logi-final__icon {
    display: grid;
    width: 61px;
    height: 61px;
    place-items: center;
    border: 1px solid rgba(104, 231, 213, .28);
    border-radius: 18px;
    color: #68e7d5;
    background: rgba(255, 255, 255, .07);
}
.logi-final__icon svg {
    width: 34px;
    height: 34px;
}
.logi-final strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 19px;
}
.logi-final p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
}

@media (max-width: 980px) {
    .logi-integration { grid-template-columns: 1fr; }
    .logi-integration__connector { display: none; }
    .logi-integration__hub {
        width: 230px;
        min-height: 230px;
        margin: auto;
    }
    .logi-integration__result { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logi-archive__cards,
    .logi-role-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .logi-benefits,
    .logi-party-grid,
    .logi-check-strip { grid-template-columns: 1fr; }
    .logi-lead__route { grid-template-columns: 1fr; }
    .logi-route-line {
        width: 2px;
        height: 26px;
        margin: auto;
        background: linear-gradient(rgba(0, 190, 162, .2), var(--lg-teal));
    }
    .logi-route-line::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%) rotate(135deg);
    }
    .logi-route-document { grid-column: auto; }
    .logi-system-grid,
    .logi-close-grid,
    .logi-launch { grid-template-columns: 1fr; }
    .logi-roaming { grid-template-columns: 1fr; }
    .logi-roaming__bridge::before,
    .logi-roaming__bridge::after { display: none; }
}

@media (max-width: 620px) {
    .logi-article { font-size: 15px; }
    .logi-lead {
        padding: 27px 20px;
        border-radius: 22px;
    }
    .logi-lead__route { padding: 20px; }
    .logi-section { padding-top: 64px; }
    .logi-heading > p { font-size: 16px; }
    .logi-timeline__item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
        padding-right: 17px;
    }
    .logi-timeline::before { left: 25px; }
    .logi-mistakes__grid { grid-template-columns: 1fr; }
    .logi-integration { padding: 22px 17px; }
    .logi-integration__result { grid-template-columns: 1fr; }
    .logi-integration__hub {
        width: 200px;
        min-height: 200px;
    }
    .logi-final { grid-template-columns: 1fr; }
    .logi-archive__search { grid-template-columns: 24px minmax(0, 1fr); }
    .logi-archive__search kbd { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .logi-route-document__pulse { box-shadow: none; }
}

/* ======================================================
   Электронные экспедиторские документы — article ID4
   Семейство классов eed-*, 27.08.2026
   ====================================================== */
.eed-article {
    --eed-navy: #013f54;
    --eed-deep: #012d3d;
    --eed-teal: #00bea2;
    --eed-teal-dark: #008d79;
    --eed-soft: #e8faf7;
    --eed-mint: #c9f3ec;
    --eed-ink: #173647;
    --eed-muted: #587180;
    --eed-line: #dce9ed;
    --eed-warm: #fff7ea;
    color: var(--eed-ink);
    font-size: 16px;
    line-height: 1.68;
}
.eed-article *, .eed-article *::before, .eed-article *::after { box-sizing: border-box; }
.eed-article section { max-width: none; }
.eed-article h2, .eed-article h3, .eed-article p, .eed-article ol, .eed-article ul { margin-top: 0; }
.eed-article h2 {
    margin-bottom: 14px;
    color: var(--eed-navy);
    font-size: clamp(29px, 4.3vw, 43px);
    line-height: 1.12;
    letter-spacing: -.035em;
}
.eed-article h3 { color: var(--eed-navy); line-height: 1.28; }
.eed-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--eed-teal-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.eed-kicker::before { content: ""; width: 22px; height: 2px; border-radius: 9px; background: var(--eed-teal); }
.eed-heading { max-width: 790px; margin-bottom: 30px; }
.eed-heading > p { margin-bottom: 0; color: var(--eed-muted); font-size: 17px; }
.eed-section { padding-top: 84px; }
.eed-section--last { padding-bottom: 16px; }

.eed-lead {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 42px;
    align-items: center;
    overflow: hidden;
    padding: 40px;
    border: 1px solid rgba(0, 190, 162, .22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 190, 162, .24), transparent 34%),
        linear-gradient(145deg, var(--eed-navy), var(--eed-deep));
    box-shadow: 0 24px 60px rgba(1, 63, 84, .16);
}
.eed-lead::after { content: ""; position: absolute; right: -80px; bottom: -110px; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.eed-lead .eed-kicker { color: #6be9d7; }
.eed-lead__copy, .eed-lead__route { position: relative; z-index: 1; }
.eed-lead__text { margin-bottom: 24px; color: rgba(255,255,255,.84); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.eed-deadline { display: inline-flex; gap: 13px; align-items: center; padding: 11px 16px; border: 1px solid rgba(107,233,215,.25); border-radius: 15px; background: rgba(255,255,255,.07); }
.eed-deadline__day { color: #6be9d7; font-size: 35px; font-weight: 850; line-height: 1; }
.eed-deadline strong, .eed-deadline small { display: block; }
.eed-deadline strong { color: #fff; font-size: 14px; }
.eed-deadline small { color: rgba(255,255,255,.55); font-size: 11px; }
.eed-lead__route { display: grid; grid-template-columns: auto minmax(20px, 1fr) 116px minmax(20px, 1fr) auto; align-items: center; gap: 8px; }
.eed-lead__route > span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; }
.eed-lead__route > i { position: relative; height: 2px; background: linear-gradient(90deg, rgba(107,233,215,.18), #6be9d7); }
.eed-lead__route > i::after { content: ""; position: absolute; top: -3px; right: 0; width: 8px; height: 8px; border-top: 2px solid #6be9d7; border-right: 2px solid #6be9d7; transform: rotate(45deg); }
.eed-lead__document { display: grid; min-height: 116px; place-items: center; padding: 13px; border: 1px solid rgba(107,233,215,.28); border-radius: 20px; text-align: center; background: rgba(255,255,255,.09); backdrop-filter: blur(8px); }
.eed-lead__document svg { width: 38px; height: 38px; color: #6be9d7; }
.eed-lead__document strong, .eed-lead__document small { display: block; }
.eed-lead__document strong { color: #fff; font-size: 16px; }
.eed-lead__document small { color: rgba(255,255,255,.48); font-size: 9px; }

.eed-change-grid, .eed-docs, .eed-party-grid, .eed-role-grid, .eed-scenario-grid, .eed-mistakes { display: grid; gap: 16px; }
.eed-change-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eed-change-card { padding: 24px; border: 1px solid var(--eed-line); border-radius: 19px; background: #fff; box-shadow: 0 12px 32px rgba(1,63,84,.05); }
.eed-change-card--accent { border-color: rgba(0,190,162,.4); background: linear-gradient(145deg, var(--eed-soft), #fff); }
.eed-change-card > span { color: var(--eed-teal-dark); font-size: 12px; font-weight: 850; }
.eed-change-card h3 { margin: 12px 0 7px; font-size: 19px; }
.eed-change-card p { margin-bottom: 0; color: var(--eed-muted); font-size: 14px; }
.eed-note, .eed-alert, .eed-reserve { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 15px; align-items: start; margin-top: 17px; padding: 20px; border: 1px solid rgba(0,190,162,.24); border-radius: 17px; background: var(--eed-soft); }
.eed-note svg, .eed-alert > svg { width: 28px; height: 28px; color: var(--eed-teal-dark); }
.eed-note p, .eed-alert p, .eed-reserve p { margin-bottom: 0; color: #3c5e6d; }
.eed-note--soft { background: #f7fbfc; }

.eed-party-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eed-party-card { position: relative; padding: 28px; border: 1px solid var(--eed-line); border-radius: 22px; background: #fff; }
.eed-party-card--dark { color: rgba(255,255,255,.72); border-color: transparent; background: linear-gradient(145deg, var(--eed-navy), var(--eed-deep)); }
.eed-party-card__icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 25px; border-radius: 15px; color: var(--eed-teal-dark); background: var(--eed-soft); }
.eed-party-card--dark .eed-party-card__icon { color: #6be9d7; background: rgba(255,255,255,.08); }
.eed-party-card__icon svg { width: 26px; height: 26px; }
.eed-party-card > span { color: var(--eed-teal-dark); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.eed-party-card--dark > span { color: #6be9d7; }
.eed-party-card h3 { margin: 8px 0; font-size: 21px; }
.eed-party-card--dark h3 { color: #fff; }
.eed-party-card p { margin-bottom: 0; color: var(--eed-muted); }
.eed-party-card--dark p { color: rgba(255,255,255,.68); }
.eed-compare { display: grid; grid-template-columns: minmax(0,1fr) 45px minmax(0,1fr); gap: 16px; align-items: center; margin-top: 17px; padding: 20px; border: 1px solid var(--eed-line); border-radius: 17px; background: #f7fbfc; }
.eed-compare div { padding: 4px 8px; }
.eed-compare span, .eed-compare strong { display: block; }
.eed-compare span { color: var(--eed-teal-dark); font-size: 12px; font-weight: 800; }
.eed-compare strong { margin-top: 4px; color: var(--eed-navy); font-size: 15px; }
.eed-compare i { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: var(--eed-teal-dark); font-style: normal; font-weight: 850; background: var(--eed-mint); }
.eed-fineprint { margin: 15px 0 0; color: var(--eed-muted); font-size: 14px; }

.eed-docs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eed-doc-card { position: relative; overflow: hidden; padding: 27px; border: 1px solid var(--eed-line); border-radius: 21px; background: #fff; }
.eed-doc-card--featured { border-color: rgba(0,190,162,.45); box-shadow: 0 18px 45px rgba(0,141,121,.1); }
.eed-doc-card__number { position: absolute; top: 20px; right: 22px; color: #d4e4e8; font-size: 28px; font-weight: 850; }
.eed-doc-card__icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 24px; border-radius: 15px; color: var(--eed-teal-dark); background: var(--eed-soft); }
.eed-doc-card__icon svg { width: 27px; height: 27px; }
.eed-doc-card h3 { min-height: 52px; margin: 0 0 10px; font-size: 20px; }
.eed-doc-card p { margin-bottom: 18px; color: var(--eed-muted); font-size: 14px; }
.eed-doc-card small { color: var(--eed-teal-dark); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.eed-law { margin-top: 17px; padding: 19px 22px; border-left: 4px solid var(--eed-teal); border-radius: 0 14px 14px 0; background: #f7fbfc; }
.eed-law > span { color: var(--eed-teal-dark); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.eed-law p { margin: 6px 0 0; color: var(--eed-muted); font-size: 14px; }
.eed-law a { color: var(--eed-teal-dark); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.eed-flow { display: grid; grid-template-columns: repeat(9, auto); align-items: stretch; overflow-x: auto; padding: 7px 2px 15px; }
.eed-flow article { width: 135px; padding: 18px 15px; border: 1px solid var(--eed-line); border-radius: 16px; background: #fff; }
.eed-flow__operator { border-color: rgba(0,190,162,.42) !important; background: var(--eed-soft) !important; }
.eed-flow article > span { display: grid; width: 28px; height: 28px; place-items: center; margin-bottom: 13px; border-radius: 9px; color: var(--eed-teal-dark); font-size: 11px; font-weight: 850; background: var(--eed-soft); }
.eed-flow article strong { display: block; color: var(--eed-navy); font-size: 14px; line-height: 1.3; }
.eed-flow article p { margin: 7px 0 0; color: var(--eed-muted); font-size: 11px; line-height: 1.5; }
.eed-flow > i { position: relative; align-self: center; width: 25px; height: 2px; background: var(--eed-mint); }
.eed-flow > i::after { content: ""; position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-top: 2px solid var(--eed-teal); border-right: 2px solid var(--eed-teal); transform: rotate(45deg); }
.eed-alert { border-color: #efd5ae; background: var(--eed-warm); }
.eed-alert > svg { color: #c67624; }
.eed-alert strong { display: block; margin-bottom: 3px; color: #784916; }
.eed-alert p { color: #765d3e; }

.eed-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eed-role-grid article { padding: 22px; border: 1px solid var(--eed-line); border-radius: 17px; background: #fff; }
.eed-role-grid span { color: var(--eed-teal-dark); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.eed-role-grid h3 { margin: 7px 0 5px; font-size: 18px; }
.eed-role-grid p { margin-bottom: 0; color: var(--eed-muted); font-size: 14px; }
.eed-reserve__icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: var(--eed-teal-dark); background: #fff; }
.eed-reserve__icon svg { width: 24px; height: 24px; }

.eed-exceptions, .eed-roadmap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 0; list-style: none; }
.eed-exceptions li, .eed-roadmap li { display: grid; grid-template-columns: 45px minmax(0,1fr); gap: 15px; padding: 21px; border: 1px solid var(--eed-line); border-radius: 17px; background: #fff; }
.eed-exceptions li > span, .eed-roadmap li > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: var(--eed-teal-dark); font-size: 11px; font-weight: 850; background: var(--eed-soft); }
.eed-exceptions h3, .eed-roadmap h3 { margin: 1px 0 5px; font-size: 16px; }
.eed-exceptions p, .eed-roadmap p { margin-bottom: 0; color: var(--eed-muted); font-size: 13px; }
.eed-warning { margin: 15px 0 0; padding: 18px 20px; border: 1px solid #efd5ae; border-radius: 15px; color: #765d3e; background: var(--eed-warm); }

.eed-format-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.eed-format-grid article { padding: 28px; border: 1px solid #efd5ae; border-radius: 22px; background: var(--eed-warm); }
.eed-format-grid article.eed-format-grid__right { border-color: rgba(0,190,162,.35); background: var(--eed-soft); }
.eed-format-grid__status { color: #aa681f; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.eed-format-grid__right .eed-format-grid__status { color: var(--eed-teal-dark); }
.eed-format-grid h3 { margin: 9px 0 15px; font-size: 20px; }
.eed-format-grid ul { display: grid; gap: 9px; margin-bottom: 0; padding-left: 20px; color: var(--eed-muted); font-size: 14px; }
.eed-format-grid li::marker { color: var(--eed-teal); }

.eed-integration { display: grid; grid-template-columns: minmax(150px,.7fr) minmax(210px,1fr) minmax(170px,.8fr); gap: 25px; align-items: center; padding: 30px; border-radius: 24px; color: rgba(255,255,255,.75); background: linear-gradient(145deg,var(--eed-navy),var(--eed-deep)); }
.eed-integration__systems, .eed-integration__result { display: grid; gap: 9px; }
.eed-integration__systems span, .eed-integration__result span { padding: 12px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.06); }
.eed-integration__systems strong, .eed-integration__systems small { display: block; }
.eed-integration__systems strong { color: #fff; font-size: 14px; }
.eed-integration__systems small { color: rgba(255,255,255,.46); font-size: 10px; }
.eed-integration__hub { position: relative; display: grid; min-height: 210px; place-items: center; align-content: center; border: 1px solid rgba(107,233,215,.25); border-radius: 50%; text-align: center; background: radial-gradient(circle,rgba(0,190,162,.22),rgba(255,255,255,.04) 65%); }
.eed-integration__hub > span { position: absolute; inset: 15px; border: 1px dashed rgba(107,233,215,.28); border-radius: 50%; }
.eed-integration__hub svg { width: 43px; height: 43px; color: #6be9d7; }
.eed-integration__hub strong, .eed-integration__hub small { display: block; position: relative; }
.eed-integration__hub strong { margin-top: 6px; color: #fff; }
.eed-integration__hub small { color: rgba(255,255,255,.5); font-size: 10px; }
.eed-integration__result span { position: relative; padding-left: 29px; color: rgba(255,255,255,.72); font-size: 12px; }
.eed-integration__result span::before { content: ""; position: absolute; left: 13px; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: #6be9d7; transform: translateY(-50%); }
.eed-scenario-grid { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 16px; }
.eed-scenario-grid article { padding: 21px; border: 1px solid var(--eed-line); border-radius: 17px; background: #fff; }
.eed-scenario-grid span { color: var(--eed-teal-dark); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.eed-scenario-grid h3 { margin: 7px 0 5px; font-size: 18px; }
.eed-scenario-grid p { margin-bottom: 0; color: var(--eed-muted); font-size: 14px; }

.eed-roadmap { position: relative; }
.eed-roadmap li { transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.eed-roadmap li:hover { border-color: rgba(0,190,162,.4); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(1,63,84,.07); }
.eed-pilot { margin-top: 17px; padding: 23px; border: 1px solid rgba(0,190,162,.3); border-radius: 18px; background: var(--eed-soft); }
.eed-pilot > span { display: block; margin-bottom: 13px; color: var(--eed-navy); font-weight: 750; }
.eed-pilot > div { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.eed-pilot i { padding: 7px 10px; border-radius: 10px; color: var(--eed-teal-dark); font-size: 11px; font-style: normal; font-weight: 750; background: #fff; }
.eed-pilot b { color: var(--eed-teal); }

.eed-mistakes { grid-template-columns: repeat(2,minmax(0,1fr)); }
.eed-mistakes article { position: relative; padding: 23px 22px 22px 58px; border: 1px solid var(--eed-line); border-radius: 17px; background: #fff; }
.eed-mistakes article:last-child { grid-column: 1 / -1; }
.eed-mistakes span { position: absolute; top: 22px; left: 20px; display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; color: #b36825; font-size: 10px; font-weight: 850; background: #fff0dc; }
.eed-mistakes h3 { margin: 0 0 5px; font-size: 16px; }
.eed-mistakes p { margin-bottom: 0; color: var(--eed-muted); font-size: 13px; }

.eed-checklist { display: grid; grid-template-columns: minmax(0,1fr) 180px; gap: 24px; align-items: stretch; padding: 28px; border: 1px solid var(--eed-line); border-radius: 23px; background: #fff; box-shadow: 0 16px 44px rgba(1,63,84,.06); }
.eed-checklist ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.eed-checklist li { position: relative; padding-left: 31px; color: #3f5d6c; }
.eed-checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 7px; color: var(--eed-teal-dark); font-size: 12px; font-weight: 850; background: var(--eed-soft); }
.eed-checklist__score { display: grid; align-content: center; justify-items: center; padding: 20px; border-radius: 18px; text-align: center; color: rgba(255,255,255,.65); background: linear-gradient(145deg,var(--eed-navy),var(--eed-deep)); }
.eed-checklist__score span { color: #6be9d7; font-size: 57px; font-weight: 850; line-height: 1; }
.eed-checklist__score strong { color: #fff; font-size: 13px; }
.eed-checklist__score small { margin-top: 5px; font-size: 10px; }
.eed-final { display: grid; grid-template-columns: 65px minmax(0,1fr); gap: 20px; align-items: center; margin-top: 18px; padding: 28px; border-radius: 21px; color: rgba(255,255,255,.72); background: linear-gradient(145deg,var(--eed-navy),var(--eed-deep)); }
.eed-final__icon { display: grid; width: 61px; height: 61px; place-items: center; border: 1px solid rgba(107,233,215,.25); border-radius: 18px; color: #6be9d7; background: rgba(255,255,255,.06); }
.eed-final__icon svg { width: 33px; height: 33px; }
.eed-final strong { display: block; margin-bottom: 5px; color: #fff; font-size: 19px; }
.eed-final p { margin-bottom: 12px; color: rgba(255,255,255,.68); }
.eed-final a { display: inline-flex; padding: 9px 14px; border-radius: 10px; color: var(--eed-navy); font-size: 13px; font-weight: 800; text-decoration: none; background: #6be9d7; }

@media (max-width: 980px) {
    .eed-lead { grid-template-columns: 1fr; }
    .eed-lead__route { max-width: 520px; }
    .eed-docs, .eed-change-grid { grid-template-columns: 1fr; }
    .eed-doc-card h3 { min-height: 0; }
    .eed-integration { grid-template-columns: 1fr; }
    .eed-integration__systems, .eed-integration__result { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .eed-integration__result { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .eed-integration__hub { width: 230px; min-height: 230px; margin: auto; }
}
@media (max-width: 720px) {
    .eed-party-grid, .eed-role-grid, .eed-format-grid, .eed-exceptions, .eed-roadmap, .eed-scenario-grid, .eed-mistakes { grid-template-columns: 1fr; }
    .eed-mistakes article:last-child { grid-column: auto; }
    .eed-compare { grid-template-columns: 1fr; }
    .eed-compare i { margin: auto; }
    .eed-checklist { grid-template-columns: 1fr; }
    .eed-checklist__score { min-height: 150px; }
}
@media (max-width: 620px) {
    .eed-article { font-size: 15px; }
    .eed-section { padding-top: 64px; }
    .eed-heading > p { font-size: 16px; }
    .eed-lead { padding: 27px 20px; border-radius: 22px; }
    .eed-lead__route { grid-template-columns: 1fr; text-align: center; }
    .eed-lead__route > i { width: 2px; height: 24px; margin: auto; background: linear-gradient(rgba(107,233,215,.18),#6be9d7); }
    .eed-lead__route > i::after { top: auto; right: -3px; bottom: 0; transform: rotate(135deg); }
    .eed-lead__document { width: 130px; margin: auto; }
    .eed-integration { padding: 23px 17px; }
    .eed-integration__systems, .eed-integration__result { grid-template-columns: 1fr; }
    .eed-final { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .eed-roadmap li { transition: none; }
}

/*
 * EED dark surfaces: modern.css is loaded after this file and its generic
 * .bl_detail-page .bl_detail-text rules otherwise repaint headings, strong
 * labels and links with the dark article ink. Keep these component-specific
 * selectors more specific than the global typography layer.
 */
.bl_detail-page .bl_detail-text .eed-lead strong,
.bl_detail-page .bl_detail-text .eed-party-card--dark h3,
.bl_detail-page .bl_detail-text .eed-integration strong,
.bl_detail-page .bl_detail-text .eed-checklist__score strong,
.bl_detail-page .bl_detail-text .eed-final strong {
    color: #fff;
}

.bl_detail-page .bl_detail-text .eed-final a {
    color: var(--eed-navy);
    text-decoration: none;
}

.bl_detail-page .bl_detail-text .eed-final a:hover {
    color: var(--eed-deep);
}

/* End */
/* /local/components/kontur/blog.detail/templates/.default/style.css?1788295580104890 */
