

/* Start:/local/css/kontur/vidy_edo.css?177569523923856*/
/* ======================================================
   vidy_edo.css — Виды ЭДО с Контур Диадок
   Префикс: vidy_edo_
   ====================================================== */

.vidy_edo_hero, .vidy_edo_types, .vidy_edo_by_purpose,
.vidy_edo_tasks, .vidy_edo_advantages, .vidy_edo_tariffs {
    --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;
}

.vidy_edo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.vidy_edo_section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.vidy_edo_section-title span { color: var(--accent); }

.vidy_edo_section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 52px;
}

/* === КНОПКИ === */
.vidy_edo_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;
}

.vidy_edo_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,190,162,0.3);
}

.vidy_edo_btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.vidy_edo_btn-primary:hover svg { transform: translateX(4px); }

.vidy_edo_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;
}

.vidy_edo_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

.vidy_edo_btn-outline svg { width: 18px; height: 18px; }

/* ======================== */
/* === HERO ===             */
/* ======================== */
.vidy_edo_hero {
    position: relative;
    padding: 100px 0 120px;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vidy_edo_hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vidy_edo_hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.vidy_edo_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.vidy_edo_hero-glow--1 {
    top: -20%; right: 5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,190,162,0.18) 0%, transparent 70%);
}

.vidy_edo_hero-glow--2 {
    bottom: -30%; left: -5%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0,80,120,0.25) 0%, transparent 70%);
}

.vidy_edo_hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

.vidy_edo_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;
}

.vidy_edo_hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: vidy_edo_pulse 2s ease-in-out infinite;
}

@keyframes vidy_edo_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.vidy_edo_hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.vidy_edo_hero-title-accent { color: var(--accent); }

.vidy_edo_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.vidy_edo_hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.vidy_edo_hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vidy_edo_hero-stat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.vidy_edo_hero-stat-icon svg { width: 16px; height: 16px; }

.vidy_edo_hero-stat-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.vidy_edo_hero-stat-text strong {
    display: block;
    font-size: 15px;
    color: var(--white);
}

.vidy_edo_hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ======================== */
/* === HERO АНИМАЦИЯ ===    */
/* ======================== */
.vidy_edo_hero-anim {
    position: relative;
    height: 400px;
    animation: vidy_edo_fadeLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes vidy_edo_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Центральный блок — компания */
.vidy_edo_anim-company {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 76px;
    background: rgba(0,190,162,0.12);
    border: 2px solid rgba(0,190,162,0.5);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 5;
    backdrop-filter: blur(8px);
}

.vidy_edo_anim-company svg { width: 28px; height: 28px; color: var(--accent); }

.vidy_edo_anim-company-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Узлы: партнёр, сотрудники, госорган */
.vidy_edo_anim-node {
    position: absolute;
    width: 80px; height: 70px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 4;
}

.vidy_edo_anim-node svg { width: 22px; height: 22px; }

/* Позиции */
.vidy_edo_anim-node--partner  { top: 40px;  left: 20px; animation: vidy_edo_nodeFloat 4s ease-in-out 0s infinite; }
.vidy_edo_anim-node--staff    { top: 40px;  right: 20px; animation: vidy_edo_nodeFloat 4s ease-in-out 1s infinite; }
.vidy_edo_anim-node--gov      { bottom: 40px; left: 50%; transform: translateX(-50%); animation: vidy_edo_nodeFloat 4s ease-in-out 2s infinite; }

@keyframes vidy_edo_nodeFloat {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
    50%       { box-shadow: 0 8px 30px rgba(0,190,162,0.2); border-color: rgba(0,190,162,0.3); }
}

/* Линии */
.vidy_edo_anim-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Метки потоков */
.vidy_edo_anim-flow-label {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 100px;
    z-index: 6;
}

.vidy_edo_anim-flow-label--ext {
    top: 22px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,190,162,0.2);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.35);
}

.vidy_edo_anim-flow-label--int {
    top: 50%; right: 4px;
    transform: translateY(-50%);
    background: rgba(99,102,241,0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99,102,241,0.3);
}

.vidy_edo_anim-flow-label--gov {
    bottom: 22px; left: 50%;
    transform: translateX(-50%);
    background: rgba(251,191,36,0.2);
    color: #fcd34d;
    border: 1px solid rgba(251,191,36,0.3);
}

/* Бегущие документы */
.vidy_edo_anim-doc {
    position: absolute;
    width: 24px; height: 28px;
    background: var(--white);
    border-radius: 3px 6px 3px 3px;
    z-index: 7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
}

.vidy_edo_anim-doc::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 8px; height: 8px;
    background: #e2e8f0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.vidy_edo_anim-doc-lines {
    position: absolute;
    bottom: 5px; left: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 14px;
}

.vidy_edo_anim-doc-line {
    height: 2px;
    border-radius: 1px;
    background: #cbd5e1;
}

.vidy_edo_anim-doc-line:nth-child(2) { width: 75%; }
.vidy_edo_anim-doc-line:nth-child(3) { width: 55%; }

/* Анимации движения документов */
/* Партнёр ↔ компания (внешний) */
@keyframes vidy_edo_doc_ext_out {
    0%   { left: calc(50% - 12px); top: calc(50% - 14px); opacity: 0; transform: scale(0.8); }
    10%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { left: 52px; top: 62px; opacity: 0; transform: scale(0.85); }
}
@keyframes vidy_edo_doc_ext_in {
    0%   { left: 52px; top: 62px; opacity: 0; transform: scale(0.8); }
    10%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { left: calc(50% - 12px); top: calc(50% - 14px); opacity: 0; transform: scale(0.85); }
}
/* Сотрудники ↔ компания (внутренний) */
@keyframes vidy_edo_doc_int_out {
    0%   { right: 52px; top: 62px; left: auto; opacity: 0; transform: scale(0.8); }
    10%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { right: calc(50% - 12px); top: calc(50% - 14px); left: auto; opacity: 0; transform: scale(0.85); }
}
/* Госоргана ↔ компания */
@keyframes vidy_edo_doc_gov_out {
    0%   { left: calc(50% - 12px); top: calc(50% - 14px); opacity: 0; transform: scale(0.8); }
    10%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { left: calc(50% - 12px); bottom: 52px; top: auto; opacity: 0; transform: scale(0.85); }
}

.vidy_edo_anim-doc--ext1 { animation: vidy_edo_doc_ext_out 2.5s ease-in-out 0s infinite; }
.vidy_edo_anim-doc--ext2 { animation: vidy_edo_doc_ext_in  2.5s ease-in-out 1.2s infinite; }
.vidy_edo_anim-doc--int1 { animation: vidy_edo_doc_int_out 2.5s ease-in-out 0.5s infinite; }
.vidy_edo_anim-doc--gov1 { animation: vidy_edo_doc_gov_out 2.5s ease-in-out 1s infinite; }

/* ======================== */
/* === ТРИ ВИДА ЭДО ===     */
/* ======================== */
.vidy_edo_types {
    padding: 80px 0;
    background: var(--bg-light);
}

.vidy_edo_types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vidy_edo_type-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vidy_edo_type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s;
}

.vidy_edo_type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.vidy_edo_type-card:hover::before { opacity: 1; }

.vidy_edo_type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 18px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.25);
}

.vidy_edo_type-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vidy_edo_type-icon--int  { background: rgba(99,102,241,0.1);  color: #6366f1; border: 1px solid rgba(99,102,241,0.2); }
.vidy_edo_type-icon--ext  { background: rgba(0,190,162,0.1);   color: var(--accent); border: 1px solid rgba(0,190,162,0.2); }
.vidy_edo_type-icon--gov  { background: rgba(251,191,36,0.1);  color: #d97706; border: 1px solid rgba(251,191,36,0.2); }

.vidy_edo_type-icon svg { width: 26px; height: 26px; }

.vidy_edo_type-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.25;
}

.vidy_edo_type-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ======================== */
/* === ВИДЫ ПО НАЗНАЧЕНИЮ */
/* ======================== */
.vidy_edo_by_purpose {
    padding: 80px 0;
    background: var(--white);
}

.vidy_edo_purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vidy_edo_purpose-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.vidy_edo_purpose-card:hover {
    border-color: var(--accent);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,190,162,0.09);
}

.vidy_edo_purpose-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: background 0.3s;
}

.vidy_edo_purpose-card:hover .vidy_edo_purpose-icon {
    background: rgba(0,190,162,0.18);
}

.vidy_edo_purpose-icon svg { width: 22px; height: 22px; }

.vidy_edo_purpose-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.vidy_edo_purpose-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === ЗАДАЧИ ===           */
/* ======================== */
.vidy_edo_tasks {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.vidy_edo_tasks::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.vidy_edo_tasks::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,80,120,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.vidy_edo_tasks .vidy_edo_section-title { color: var(--white); }
.vidy_edo_tasks .vidy_edo_section-sub   { color: rgba(255,255,255,0.6); }

.vidy_edo_tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.vidy_edo_task-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 22px 20px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.vidy_edo_task-card:hover {
    background: rgba(0,190,162,0.1);
    border-color: rgba(0,190,162,0.3);
    transform: translateY(-3px);
}

.vidy_edo_task-num {
    font-size: 32px;
    font-weight: 800;
    color: rgba(0,190,162,0.4);
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.vidy_edo_task-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === ПРЕИМУЩЕСТВА ===     */
/* ======================== */
.vidy_edo_advantages {
    padding: 80px 0;
    background: var(--bg-light);
}

.vidy_edo_adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vidy_edo_adv-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.vidy_edo_adv-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
}

.vidy_edo_adv-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);
}

.vidy_edo_adv-icon svg { width: 20px; height: 20px; }

.vidy_edo_adv-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.vidy_edo_adv-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ======================== */
/* === ТАРИФЫ ===           */
/* ======================== */
.vidy_edo_tariffs {
    padding: 80px 0;
    background: var(--white);
}

.vidy_edo_tariff-note {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
}

.vidy_edo_tariff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.vidy_edo_tariff-card {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vidy_edo_tariff-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;
}

.vidy_edo_tariff-card:hover {
    border-color: var(--accent);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,190,162,0.12);
}

.vidy_edo_tariff-card:hover::before { opacity: 1; }

.vidy_edo_tariff-card--popular {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
}

.vidy_edo_tariff-card--popular::before { opacity: 1; }

.vidy_edo_tariff-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 3px 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vidy_edo_tariff-docs-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.vidy_edo_tariff-docs-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.vidy_edo_tariff-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.vidy_edo_tariff-per {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 18px;
}

.vidy_edo_tariff-btn {
    width: 100%;
    padding: 11px 20px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.vidy_edo_tariff-btn:hover,
.vidy_edo_tariff-card--popular .vidy_edo_tariff-btn {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.vidy_edo_tariff-ep {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-dark);
    border-radius: 16px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.vidy_edo_tariff-ep::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.vidy_edo_tariff-ep-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    position: relative; z-index: 1;
}

.vidy_edo_tariff-ep-icon svg { width: 22px; height: 22px; }

.vidy_edo_tariff-ep-text {
    flex: 1; min-width: 180px;
    position: relative; z-index: 1;
}

.vidy_edo_tariff-ep-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.vidy_edo_tariff-ep-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.vidy_edo_tariff-ep-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
    position: relative; z-index: 1;
}

.vidy_edo_tariff-ep .vidy_edo_btn-primary {
    flex-shrink: 0;
    position: relative; z-index: 1;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1100px) {
    .vidy_edo_tariff-grid  { grid-template-columns: repeat(2, 1fr); }
    .vidy_edo_tasks-grid   { grid-template-columns: repeat(2, 1fr); }
    .vidy_edo_adv-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .vidy_edo_hero-wrapper { grid-template-columns: 1fr; }
    .vidy_edo_hero-anim    { display: none; }
    .vidy_edo_types-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .vidy_edo_purpose-grid { grid-template-columns: 1fr; }
    .vidy_edo_tasks-grid   { grid-template-columns: 1fr; }
    .vidy_edo_adv-grid     { grid-template-columns: 1fr 1fr; }
    .vidy_edo_tariff-grid  { grid-template-columns: 1fr 1fr; }
    .vidy_edo_tariff-ep    { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .vidy_edo_adv-grid    { grid-template-columns: 1fr; }
    .vidy_edo_tariff-grid { grid-template-columns: 1fr; }
}
/* End */
/* /local/css/kontur/vidy_edo.css?177569523923856 */
