

/* Start:/local/components/kontur/blog.detail/templates/.default/style.css?177569523929550*/
/* ======================================================
   blog.css — Блог Контур Диадок
   Префикс: bl_
   ====================================================== */

/* === ПЕРЕМЕННЫЕ === */
.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-bottom: 16px;
    opacity: 0.4;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bl_empty p {
    font-size: 16px;
}

/* === СЕТКА КАРТОЧЕК === */
.bl_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

.bl_grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ======================== */
/* === КАРТОЧКА СТАТЬИ === */
/* ======================== */
.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%);
}

/* Декоративный glow */
.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_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%;
}

/* Двухколоночный wrapper */
.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: 800;
    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);
}

/* Правая колонка — картинка */
.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;
}

/* date в hero */
.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;
}

/* 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;
    }
}

/* back link */
.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); }

/* tag */
.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: 700;
    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.7;
}

.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);
    position: relative;
}

.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;
}

/* Адаптив для сравнения */
@media (max-width: 640px) {
    .bl_compare {
        grid-template-columns: 1fr;
    }
}

/* Шаринг */
.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;
}


/* Анимационный блок в карточке */
.bl_card-animation {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #013f54;
}

/* Анимационный блок в hero детальной */
.bl_detail-hero-img-card--animation {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}
/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1024px) {
    .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: 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;
    }
}

/* End */


/* Start:/local/css/kontur/blog.css?177569523917151*/
/* ======================================================
   blog.css — Блог Контур Диадок
   Префикс: bl_
   ====================================================== */

/* === ПЕРЕМЕННЫЕ === */
.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-bottom: 16px;
    opacity: 0.4;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bl_empty p {
    font-size: 16px;
}

/* === СЕТКА КАРТОЧЕК === */
.bl_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

.bl_grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ======================== */
/* === КАРТОЧКА СТАТЬИ === */
/* ======================== */
.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%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8ecf0 0%, #d0d8e0 100%);
    color: #a0aab4;
}

.bl_card-img-placeholder svg {
    width: 40px;
    height: 40px;
}

/* Тег поверх картинки */
.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_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: 72px 0 80px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.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 60%, rgba(1,63,84,0.85) 100%);
    z-index: 1;
}

.bl_detail-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.bl_detail-hero .bl_container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.bl_back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

.bl_back-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.bl_back-link:hover {
    color: var(--accent);
}

.bl_back-link:hover svg {
    transform: translateX(-3px);
}

.bl_detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.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-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 820px;
    margin-bottom: 20px;
}

.bl_detail-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.bl_detail-date svg {
    width: 14px;
    height: 14px;
}

/* ======================== */
/* === КОНТЕНТ ДЕТАЛЬНОЙ == */
/* ======================== */
.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: 700;
    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.7;
}

.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_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;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1024px) {
    .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: 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;
    }
}

/* End */


/* Start:/local/css/kontur/blog_detail_art.css?177569523928732*/
/* ======================================================
   article.css — Статья блога как лендинг
   Префикс: art_
   ====================================================== */

.art_hero, .art_lead, .art_diff, .art_how,
.art_example, .art_summary {
    --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;
}

/* === КОНТЕЙНЕР === */
.art_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.art_container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === ЗАГОЛОВОК СЕКЦИИ === */
.art_section-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.art_section-title span {
    color: var(--accent);
}

.art_section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 48px;
}

/* === КНОПКИ === */
.art_btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.art_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,190,162,0.3);
}

.art_btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.art_btn-primary:hover svg {
    transform: translateX(4px);
}

.art_btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.art_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

.art_btn-outline svg { width: 18px; height: 18px; }

/* ======================== */
/* === HERO ===             */
/* ======================== */
.art_hero {
    position: relative;
    padding: 90px 0 110px;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.art_hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.art_hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.art_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.art_hero-glow--1 {
    top: -20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,190,162,0.18) 0%, transparent 70%);
}

.art_hero-glow--2 {
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,80,120,0.25) 0%, transparent 70%);
}

.art_hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

/* Левая часть hero */
.art_hero-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.art_hero-back svg { width: 15px; height: 15px; transition: transform 0.2s; }
.art_hero-back:hover { color: var(--accent); }
.art_hero-back:hover svg { transform: translateX(-3px); }

.art_hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.art_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;
}

.art_hero-tag-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: art_pulse 2s ease-in-out infinite;
}

@keyframes art_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.art_hero-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.art_hero-date svg { width: 13px; height: 13px; }

.art_hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.art_hero-title span { color: var(--accent); }

.art_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
}

.art_hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Правая часть hero — карточки ключевых фактов */
.art_hero-facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: art_fadeLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes art_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.art_hero-fact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border-radius: 14px;
}

.art_hero-fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,190,162,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.art_hero-fact-icon svg { width: 18px; height: 18px; }

.art_hero-fact-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.art_hero-fact-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ======================== */
/* === ЛИДИРУЮЩИЙ ТЕКСТ === */
/* ======================== */
.art_lead {
    padding: 60px 0 0;
    background: var(--white);
}

.art_lead-inner {
    border-left: 4px solid var(--accent);
    padding: 6px 0 6px 28px;
}

.art_lead-inner p {
    font-size: 19px;
    color: var(--text-main);
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
}

.art_lead-law {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(0,190,162,0.06);
    border: 1px solid rgba(0,190,162,0.2);
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 36px;
}

.art_lead-law-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0,190,162,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.art_lead-law-icon svg { width: 22px; height: 22px; }

.art_lead-law strong {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.art_lead-law p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === РАЗЛИЧИЯ ===         */
/* ======================== */
.art_diff {
    padding: 72px 0;
    background: var(--white);
}

.art_diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.art_diff-card {
    border-radius: 18px;
    padding: 32px;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.art_diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.art_diff-card--accent {
    border-color: var(--accent);
    background: rgba(0,190,162,0.03);
}

.art_diff-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s;
}

.art_diff-card--accent::before { opacity: 1; }
.art_diff-card:hover::before   { opacity: 1; }

.art_diff-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.art_diff-card--accent .art_diff-label {
    background: rgba(0,190,162,0.12);
    color: var(--accent);
    border-color: rgba(0,190,162,0.25);
}

.art_diff-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.art_diff-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.art_diff-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.art_diff-note svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.art_diff-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === КАК РАБОТАЕТ ЭДО === */
/* ======================== */
.art_how {
    padding: 72px 0;
    background: var(--bg-light);
}

.art_how-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.art_how-step {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.art_how-step:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
    transform: translateY(-3px);
}

.art_how-step-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.art_how-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.art_how-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.art_how-warning {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 183, 0, 0.07);
    border: 1px solid rgba(255, 183, 0, 0.3);
    border-radius: 12px;
}

.art_how-warning svg {
    width: 20px;
    height: 20px;
    color: #e0a800;
    flex-shrink: 0;
    margin-top: 2px;
}

.art_how-warning p {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === ПРИМЕР ===           */
/* ======================== */
.art_example {
    padding: 32px 0;
}

.art_example-card {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.art_example-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.art_example-card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 30%;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,80,120,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.art_example-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 100px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.art_example-left {
    position: relative;
    z-index: 1;
}

.art_example-left h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.art_example-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* Таймлайн */
.art_example-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.art_timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
}

.art_timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -16px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.art_timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
}

.art_timeline-dot--muted {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.12);
}

.art_timeline-dot--accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,190,162,0.4);
}

.art_timeline-body {
    padding: 8px 0 24px;
}

.art_timeline-date {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}

.art_timeline-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.art_timeline-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.art_timeline-item:last-child .art_timeline-date,
.art_timeline-item:last-child .art_timeline-title {
    color: var(--accent);
}

/* ======================== */
/* === ИТОГ ===             */
/* ======================== */
.art_summary {
    padding: 32px 0 30px;
    background: var(--bg-light);
}

.art_summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.art_summary-card {
    background: var(--white);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.art_summary-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,190,162,0.1);
}

.art_summary-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.art_summary-icon svg { width: 20px; height: 20px; }

.art_summary-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.art_summary-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* === ШАРИНГ === */
.art_share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.art_share-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.art_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;
}

.art_share-btn svg { width: 17px; height: 17px; }
.art_share-btn--vk:hover  { background: #0077ff; color: #fff; border-color: #0077ff; }
.art_share-btn--tg:hover  { background: #29a8e9; color: #fff; border-color: #29a8e9; }
.art_share-btn--copy:hover,
.art_share-btn--copy.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1024px) {
    .art_hero-wrapper {
        grid-template-columns: 1fr;
    }

    .art_hero-facts {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .art_hero-fact { flex: 1; min-width: 200px; }

    .art_example-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .art_diff-grid,
    .art_how-steps {
        grid-template-columns: 1fr;
    }

    .art_summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .art_example-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .art_summary-grid {
        grid-template-columns: 1fr;
    }

    .art_hero { padding: 64px 0 80px; }
}

/* ======================================================
   Дополнение к blog_detail_art.css
   Новый блок: art_changes — список изменений в формате
   Добавить в конец файла blog_detail_art.css
   ====================================================== */

/* Переменные (уже есть в основном файле, но нужны для scope) */
.art_changes {
    padding: 72px 0;
    background: var(--bg-light);
}

.art_changes-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Элемент изменения */
.art_change-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.2s ease;
}

.art_change-item:first-child {
    padding-top: 0;
}

.art_change-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Иконка */
.art_change-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.art_change-icon svg {
    width: 18px;
    height: 18px;
}

.art_change-icon--new {
    background: rgba(0, 190, 162, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 190, 162, 0.25);
}

.art_change-icon--update {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.art_change-icon--fix {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Тело */
.art_change-body {
    flex: 1;
    min-width: 0;
}

/* Тег-бейдж */
.art_change-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.art_change-tag--new {
    background: rgba(0, 190, 162, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 190, 162, 0.25);
}

.art_change-tag--update {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.art_change-tag--fix {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.art_change-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.art_change-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Адаптив */
@media (max-width: 600px) {
    .art_change-item {
        gap: 14px;
    }

    .art_change-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .art_change-icon svg {
        width: 16px;
        height: 16px;
    }

    .art_change-title {
        font-size: 15px;
    }
}

/* ======================================================
   Дополнение к blog_detail_art.css
   Новые блоки: art_steps-visual, art_features, art_lightbox
   Добавить в конец файла blog_detail_art.css
   ====================================================== */

/* ======================== */
/* === ПОШАГОВАЯ ИНСТРУКЦИЯ СО СКРИНШОТАМИ === */
/* ======================== */
.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;
}

/* Скриншот */
.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 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_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);
}

/* ======================== */
/* === АДАПТИВ === */
/* ======================== */
@media (max-width: 768px) {
    .art_features-grid {
        grid-template-columns: 1fr 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;
    }
}

@media (max-width: 480px) {
    .art_features-grid {
        grid-template-columns: 1fr;
    }

    .art_lightbox-close {
        top: -48px;
        right: 0;
    }
}
/* End */


/* Start:/local/css/kontur/form.css?177577465826837*/
/* ============================================ */
/* KONTUR FORM STYLES                           */
/* Version: 1.0                                 */
/* ============================================ */

/* ======================== */
/* МОДАЛЬНОЕ ОКНО */
/* ======================== */

.kontur_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 63, 84, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.kontur_modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.kontur_modal {
    background: var(--white, #fff);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kontur_modal-overlay.active .kontur_modal {
    transform: scale(1) translateY(0);
}

.kontur_modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--bg-light, #f6f6f6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.kontur_modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary, #858585);
}

.kontur_modal-close:hover {
    background: var(--accent, #00BEA2);
}

.kontur_modal-close:hover svg {
    color: var(--white, #fff);
}

.kontur_modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.kontur_modal-content.kontur_modal-content--full {
    grid-template-columns: 1fr;
}

/* Левая часть — информация о тарифе */
.kontur_modal-info {
    background: linear-gradient(145deg, var(--bg-dark, #013F54) 0%, #025a76 100%);
    padding: 48px 40px;
    border-radius: 24px 0 0 24px;
    color: var(--white, #fff);
    display: flex;
    flex-direction: column;
}

.kontur_modal-info.hidden {
    display: none;
}

.kontur_modal-info-badge {
    display: inline-block;
    background: rgba(0, 190, 162, 0.2);
    color: var(--accent, #00BEA2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.kontur_modal-info-docs {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.kontur_modal-info-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.kontur_modal-info-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent, #00BEA2);
    margin-bottom: 8px;
}

.kontur_modal-info-per-doc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.kontur_modal-info-features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kontur_modal-info-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.kontur_modal-info-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent, #00BEA2);
    flex-shrink: 0;
}

/* Правая часть — форма */
.kontur_modal-form-wrapper {
    padding: 48px 40px;
}

.kontur_modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 8px;
}

.kontur_modal-subtitle {
    font-size: 15px;
    color: var(--text-secondary, #858585);
    margin-bottom: 32px;
}

/* ======================== */
/* ФОРМА — ОБЩИЕ СТИЛИ */
/* ======================== */

.kontur_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontur_form-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.kontur_form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.kontur_form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main, #222);
}

.kontur_form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.kontur_form-input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--text-secondary, #858585);
    pointer-events: none;
    transition: color 0.3s ease;
}

.kontur_form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-main, #222);
    background: var(--white, #fff);
    transition: all 0.3s ease;
}

.kontur_form-input::placeholder {
    color: var(--text-secondary, #858585);
}

.kontur_form-input:focus {
    outline: none;
    border-color: var(--accent, #00BEA2);
    box-shadow: 0 0 0 4px rgba(0, 190, 162, 0.1);
}

.kontur_form-input-wrapper:focus-within .kontur_form-input-icon {
    color: var(--accent, #00BEA2);
}

.kontur_form-input.error {
    border-color: #e74c3c;
}

.kontur_form-error {
    font-size: 12px;
    color: #e74c3c;
    min-height: 16px;
}

/* Выбор тарифа в форме */
.kontur_form-tarif-select {
    margin-top: 8px;
}

.kontur_form-tarif-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.kontur_form-tarif-option {
    cursor: pointer;
}

.kontur_form-tarif-option input {
    display: none;
}

.kontur_form-tarif-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--bg-light, #f6f6f6);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.kontur_form-tarif-option input:checked + .kontur_form-tarif-option-content {
    background: rgba(0, 190, 162, 0.1);
    border-color: var(--accent, #00BEA2);
}

.kontur_form-tarif-option:hover .kontur_form-tarif-option-content {
    border-color: rgba(0, 190, 162, 0.3);
}

.kontur_form-tarif-docs {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark, #013F54);
}

.kontur_form-tarif-price {
    font-size: 11px;
    color: var(--text-secondary, #858585);
    margin-top: 2px;
}

.kontur_form-tarif-enterprise .kontur_form-tarif-option-content {
    background: var(--bg-dark, #013F54);
}

.kontur_form-tarif-enterprise .kontur_form-tarif-docs,
.kontur_form-tarif-enterprise .kontur_form-tarif-price {
    color: var(--white, #fff);
}

.kontur_form-tarif-enterprise input:checked + .kontur_form-tarif-option-content {
    background: var(--bg-dark, #013F54);
    border-color: var(--accent, #00BEA2);
}

/* Чекбоксы */
.kontur_form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.kontur_form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.kontur_form-checkbox input {
    display: none;
}

.kontur_form-checkbox-box {
    width: 22px;
    height: 22px;
    background: var(--bg-light, #f6f6f6);
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.kontur_form-checkbox-box svg {
    width: 12px;
    height: 12px;
    color: var(--white, #fff);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.kontur_form-checkbox input:checked + .kontur_form-checkbox-box {
    background: var(--accent, #00BEA2);
    border-color: var(--accent, #00BEA2);
}

.kontur_form-checkbox input:checked + .kontur_form-checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.kontur_form-checkbox.error .kontur_form-checkbox-box {
    border-color: #e74c3c;
}

.kontur_form-checkbox-text {
    font-size: 13px;
    color: var(--text-secondary, #858585);
    line-height: 1.5;
}

.kontur_form-checkbox-text a {
    color: var(--accent, #00BEA2);
    text-decoration: none;
    font-weight: 500;
}

.kontur_form-checkbox-text a:hover {
    text-decoration: underline;
}

/* Кнопка отправки */
.kontur_form-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--accent, #00BEA2);
    color: var(--white, #fff);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.kontur_form-submit:hover {
    background: var(--accent-hover, #00a891);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 190, 162, 0.3);
}

.kontur_form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.kontur_form-submit-loader {
    display: none;
}

.kontur_form-submit.loading .kontur_form-submit-text {
    opacity: 0;
}

.kontur_form-submit.loading .kontur_form-submit-loader {
    display: block;
    position: absolute;
}

.kontur_form-submit-loader svg {
    width: 24px;
    height: 24px;
    animation: kontur_form_spin 1s linear infinite;
}

@keyframes kontur_form_spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Экран успеха */
.kontur_modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}

.kontur_modal-success.active {
    display: flex;
}

.kontur_modal-content.hidden {
    display: none;
}

.kontur_modal-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 190, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: kontur_form_success_pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes kontur_form_success_pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.kontur_modal-success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent, #00BEA2);
}

.kontur_modal-success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 12px;
}

.kontur_modal-success-text {
    font-size: 16px;
    color: var(--text-secondary, #858585);
    margin-bottom: 32px;
}

.kontur_modal-success-btn {
    padding: 16px 48px;
    background: var(--accent, #00BEA2);
    color: var(--white, #fff);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kontur_modal-success-btn:hover {
    background: var(--accent-hover, #00a891);
}

/* ======================== */
/* ВСТРАИВАЕМАЯ ФОРМА */
/* ======================== */

.kontur_inline-form-section {
    padding: 100px 0;
    background: var(--bg-dark, #013F54);
    position: relative;
    overflow: hidden;
}

.kontur_inline-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 162, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.kontur_inline-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.kontur_inline-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.kontur_inline-form-info {
    color: var(--white, #fff);
}

.kontur_inline-form-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 190, 162, 0.15);
    color: var(--accent, #00BEA2);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
}

.kontur_inline-form-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white, #fff);
}

.kontur_inline-form-title span {
    color: var(--accent, #00BEA2);
}

.kontur_inline-form-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.kontur_inline-form-features {
    display: flex;
    gap: 32px;
}

.kontur_inline-form-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kontur_inline-form-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 190, 162, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontur_inline-form-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent, #00BEA2);
}

.kontur_inline-form-feature-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #fff);
}

.kontur_inline-form-feature-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Встраиваемая форма wrapper */
.kontur_inline-form-wrapper {
    background: var(--white, #fff);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.kontur_form-inline .kontur_form-row {
    flex-wrap: wrap;
}

.kontur_form-inline .kontur_form-group {
    min-width: 200px;
}

.kontur_form-submit-inline {
    min-width: 220px;
    white-space: nowrap;
    margin-top: 0;
}

.kontur_form-checkboxes-inline {
    margin-top: 16px;
}

/* ======================== */
/* УВЕДОМЛЕНИЯ */
/* ======================== */

.kontur_notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.kontur_notification.active {
    opacity: 1;
    transform: translateY(0);
}

.kontur_notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white, #fff);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #222);
}

.kontur_notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.kontur_notification-success .kontur_notification-icon {
    color: var(--accent, #00BEA2);
}

.kontur_notification-error .kontur_notification-icon {
    color: #e74c3c;
}

.kontur_notification-success {
    border-left: 4px solid var(--accent, #00BEA2);
}

.kontur_notification-error {
    border-left: 4px solid #e74c3c;
}

/* ======================== */
/* АДАПТИВНОСТЬ */
/* ======================== */

@media (max-width: 900px) {
    .kontur_modal-content {
        grid-template-columns: 1fr;
    }
    
    .kontur_modal-info {
        border-radius: 24px 24px 0 0;
        padding: 32px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .kontur_modal-info-badge {
        margin-bottom: 0;
    }
    
    .kontur_modal-info-docs {
        font-size: 48px;
    }
    
    .kontur_modal-info-features {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .kontur_modal-form-wrapper {
        padding: 32px 24px;
    }
    
    .kontur_inline-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .kontur_inline-form-features {
        justify-content: center;
    }
    
    .kontur_form-tarif-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .kontur_modal {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        margin-top: auto;
    }
    
    .kontur_modal-info-features {
        flex-direction: column;
    }
    
    .kontur_form-row {
        flex-direction: column;
    }
    
    .kontur_form-submit-inline {
        width: 100%;
    }
    
    .kontur_inline-form-section {
        padding: 60px 0;
    }
    
    .kontur_inline-form-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .kontur_inline-form-wrapper {
        padding: 24px;
    }
    
    .kontur_form-tarif-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kontur_notification {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* ======================== */
/* НЕАКТИВНАЯ КНОПКА */
/* ======================== */

.kontur_form-submit.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #aaa;
    box-shadow: none;
    transform: none;
}

.kontur_form-submit.disabled:hover {
    opacity: 0.6;
    background: #aaa;
    transform: none;
    box-shadow: none;
}

/* ======================== */
/* АНИМАЦИЯ ВСТРЯХИВАНИЯ */
/* ======================== */

@keyframes kontur_shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.kontur_form-checkbox.shake {
    animation: kontur_shake 0.5s ease-in-out;
}

/* ======================== */
/* ОШИБКА ЧЕКБОКСА */
/* ======================== */

.kontur_form-checkbox.error .kontur_form-checkbox-box {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.kontur_form-checkbox.error .kontur_form-checkbox-text {
    color: #e74c3c;
}

.kontur_form-checkbox.error .kontur_form-checkbox-text a {
    color: #c0392b;
}

/* ======================== */
/* ПОДСКАЗКА (TOOLTIP) */
/* ======================== */

.kontur_form-tooltip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #c0392b;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.kontur_form-tooltip.active {
    opacity: 1;
    transform: translateY(0);
}

.kontur_form-tooltip svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #e74c3c;
}

/* ======================== */
/* АДАПТИВНОСТЬ */
/* ======================== */

@media (max-width: 600px) {
    .kontur_form-tooltip {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .kontur_form-tooltip svg {
        width: 16px;
        height: 16px;
    }
}

/* ================================ */
/* СЕКЦИЯ "ОСТАЛИСЬ ВОПРОСЫ?"       */
/* ================================ */

.kontur_contact-section {
    padding: 100px 0;
    background: var(--bg-light, #f6f6f6);
    position: relative;
    overflow: hidden;
}

.kontur_contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 162, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.kontur_contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 63, 84, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.kontur_contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.kontur_contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Левая часть — информация */
.kontur_contact-info {
    padding-right: 40px;
}

.kontur_contact-label {
    display: inline-block;
    padding: 8px 18px;
    background: var(--white, #fff);
    color: var(--accent, #00BEA2);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 190, 162, 0.2);
}

.kontur_contact-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-main, #222);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.kontur_contact-description {
    font-size: 18px;
    color: var(--text-secondary, #858585);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Преимущества */
.kontur_contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.kontur_contact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kontur_contact-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--white, #fff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.kontur_contact-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent, #00BEA2);
}

.kontur_contact-feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 2px;
}

.kontur_contact-feature-text span {
    font-size: 14px;
    color: var(--text-secondary, #858585);
}

/* Контакты */
.kontur_contact-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.kontur_contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark, #013F54);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontur_contact-phone:hover {
    color: var(--accent, #00BEA2);
}

.kontur_contact-phone svg {
    width: 22px;
    height: 22px;
    color: var(--accent, #00BEA2);
}

.kontur_contact-hours {
    font-size: 14px;
    color: var(--text-secondary, #858585);
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* Правая часть — форма */
.kontur_contact-form-wrapper {
    background: var(--white, #fff);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(1, 63, 84, 0.08);
    position: relative;
}

.kontur_contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Блок успешной отправки */
.kontur_contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white, #fff);
    border-radius: 24px;
}

.kontur_contact-success.active {
    display: flex;
}

.kontur_contact-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 190, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: kontur_success_pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes kontur_success_pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.kontur_contact-success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent, #00BEA2);
}

.kontur_contact-success-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 8px;
}

.kontur_contact-success-text {
    font-size: 15px;
    color: var(--text-secondary, #858585);
    margin-bottom: 24px;
}

.kontur_contact-success-btn {
    padding: 14px 32px;
    background: var(--accent, #00BEA2);
    color: var(--white, #fff);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kontur_contact-success-btn:hover {
    background: var(--accent-hover, #00a891);
    transform: translateY(-2px);
}

/* ================================ */
/* АДАПТИВНОСТЬ                     */
/* ================================ */

@media (max-width: 1024px) {
    .kontur_contact-section {
        padding: 80px 0;
    }
    
    .kontur_contact-content {
        gap: 40px;
    }
    
    .kontur_contact-info {
        padding-right: 20px;
    }
}

@media (max-width: 900px) {
    .kontur_contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .kontur_contact-info {
        padding-right: 0;
    }
    
    .kontur_contact-features {
        align-items: center;
    }
    
    .kontur_contact-feature {
        text-align: left;
    }
    
    .kontur_contact-contacts {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .kontur_contact-hours {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 600px) {
    .kontur_contact-section {
        padding: 60px 0;
    }
    
    .kontur_contact-title {
        font-size: 28px;
    }
    
    .kontur_contact-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .kontur_contact-form-wrapper {
        padding: 24px;
    }
    
    .kontur_contact-feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .kontur_contact-feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .kontur_contact-phone {
        font-size: 18px;
    }
}
/* End */
/* /local/components/kontur/blog.detail/templates/.default/style.css?177569523929550 */
/* /local/css/kontur/blog.css?177569523917151 */
/* /local/css/kontur/blog_detail_art.css?177569523928732 */
/* /local/css/kontur/form.css?177577465826837 */
