

/* Start:/local/css/kontur/mgmt_edo.css?177940074718881*/
/* ======================================================
   mgmt_edo.css — Управленческий ЭДО в Контур Диадок
   Префикс: mgmt_edo_
   ====================================================== */

.mgmt_edo_hero, .mgmt_edo_about, .mgmt_edo_workflow,
.mgmt_edo_advantages, .mgmt_edo_why, .mgmt_edo_form {
    --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;
}

.mgmt_edo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mgmt_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;
}

.mgmt_edo_section-title span { color: var(--accent); }

.mgmt_edo_section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 52px;
}

/* === КНОПКИ === */
.mgmt_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;
}

.mgmt_edo_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,190,162,0.3);
}

.mgmt_edo_btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.mgmt_edo_btn-primary:hover svg { transform: translateX(4px); }

.mgmt_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;
}

.mgmt_edo_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* ======================== */
/* === HERO ===             */
/* ======================== */
.mgmt_edo_hero {
    position: relative;
    padding: 100px 0 130px;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mgmt_edo_hero-bg { position: absolute; inset: 0; z-index: 0; }

.mgmt_edo_hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #024e6a 50%, #013f54 100%);
}

.mgmt_edo_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.mgmt_edo_hero-glow--1 {
    top: -20%; right: 5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,190,162,0.16) 0%, transparent 70%);
}

.mgmt_edo_hero-glow--2 {
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,80,120,0.22) 0%, transparent 70%);
}

/* Сетка точек как фон */
.mgmt_edo_hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.mgmt_edo_hero-wrapper {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

.mgmt_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;
}

.mgmt_edo_hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: mgmt_pulse 2s ease-in-out infinite;
}

@keyframes mgmt_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.mgmt_edo_hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.mgmt_edo_hero-title-accent { color: var(--accent); }

.mgmt_edo_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.mgmt_edo_hero-keys {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.mgmt_edo_hero-key {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.mgmt_edo_hero-key svg { width: 14px; height: 14px; color: var(--accent); }

.mgmt_edo_hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ======================== */
/* === HERO АНИМАЦИЯ —     */
/* Оргсхема с документами  */
/* ======================== */
.mgmt_edo_hero-anim {
    position: relative;
    height: 420px;
    animation: mgmt_fadeLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes mgmt_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Узлы оргсхемы */
.mgmt_node {
    position: absolute;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 4;
}

/* Главный узел — CEO/Руководитель */
.mgmt_node--ceo {
    width: 120px; height: 72px;
    top: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(0,190,162,0.18);
    border: 2px solid rgba(0,190,162,0.55);
    animation: mgmt_ceoGlow 4s ease-in-out infinite;
}

@keyframes mgmt_ceoGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,190,162,0); border-color: rgba(0,190,162,0.55); }
    50%       { box-shadow: 0 0 20px 4px rgba(0,190,162,0.2); border-color: rgba(0,190,162,0.9); }
}

/* Средние узлы — отделы */
.mgmt_node--dept {
    width: 90px; height: 64px;
    top: 150px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
}

.mgmt_node--dept-1 { left: 30px; animation: mgmt_deptGlow 5s ease-in-out 0s infinite; }
.mgmt_node--dept-2 { left: 50%; transform: translateX(-50%); animation: mgmt_deptGlow 5s ease-in-out 1.2s infinite; }
.mgmt_node--dept-3 { right: 30px; animation: mgmt_deptGlow 5s ease-in-out 2.4s infinite; }

@keyframes mgmt_deptGlow {
    0%, 100% { border-color: rgba(255,255,255,0.15); }
    50%       { border-color: rgba(0,190,162,0.4); box-shadow: 0 4px 20px rgba(0,190,162,0.15); }
}

/* Нижние узлы — сотрудники/системы */
.mgmt_node--sub {
    width: 74px; height: 56px;
    top: 290px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.mgmt_node--sub-1 { left: 10px; }
.mgmt_node--sub-2 { left: 110px; }
.mgmt_node--sub-3 { left: 50%; transform: translateX(-50%); }
.mgmt_node--sub-4 { right: 10px; }

.mgmt_node svg { color: var(--accent); }
.mgmt_node--ceo svg { width: 22px; height: 22px; }
.mgmt_node--dept svg { width: 18px; height: 18px; }
.mgmt_node--sub svg { width: 14px; height: 14px; color: rgba(0,190,162,0.7); }

.mgmt_node-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
    line-height: 1.2;
}

.mgmt_node--ceo .mgmt_node-label { color: var(--accent); font-size: 9px; }

/* Линии соединения */
.mgmt_lines {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
}

.mgmt_lines svg {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
}

/* Летящие документы по линиям */
.mgmt_doc {
    position: absolute;
    width: 20px; height: 24px;
    background: var(--white);
    border-radius: 3px 5px 3px 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 6;
    opacity: 0;
}

.mgmt_doc::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 6px; height: 6px;
    background: #e2e8f0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.mgmt_doc::after {
    content: '';
    position: absolute;
    left: 3px; top: 9px;
    width: 11px; height: 1.5px;
    background: rgba(0,190,162,0.5);
    box-shadow: 0 3px 0 rgba(0,190,162,0.3), 0 6px 0 rgba(0,190,162,0.2);
    border-radius: 1px;
}

/* Маршруты: CEO → dept1, CEO → dept2, CEO → dept3, dept2 → sub3 */
.mgmt_doc--1 { animation: mgmt_doc1 3.2s ease-in-out 0s infinite; }
.mgmt_doc--2 { animation: mgmt_doc2 3.2s ease-in-out 0.8s infinite; }
.mgmt_doc--3 { animation: mgmt_doc3 3.2s ease-in-out 1.6s infinite; }
.mgmt_doc--4 { animation: mgmt_doc4 3.2s ease-in-out 2.4s infinite; }

@keyframes mgmt_doc1 {
    0%   { top: 56px;  left: calc(50% - 10px); opacity: 0; transform: scale(0.7); }
    10%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { top: 150px; left: 55px; opacity: 0; transform: scale(0.65); }
}
@keyframes mgmt_doc2 {
    0%   { top: 56px; left: calc(50% - 10px); opacity: 0; transform: scale(0.7); }
    10%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { top: 150px; left: calc(50% - 10px); opacity: 0; transform: scale(0.65); }
}
@keyframes mgmt_doc3 {
    0%   { top: 56px; left: calc(50% - 10px); opacity: 0; transform: scale(0.7); }
    10%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { top: 150px; right: 55px; left: auto; opacity: 0; transform: scale(0.65); }
}
@keyframes mgmt_doc4 {
    0%   { top: 214px; left: calc(50% - 10px); opacity: 0; transform: scale(0.7); }
    10%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { top: 290px; left: calc(50% - 10px); opacity: 0; transform: scale(0.65); }
}

/* Статус-таблетки */
.mgmt_status-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mgmt_status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    white-space: nowrap;
}

.mgmt_status-pill span {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
}

/* ======================== */
/* === О СЕРВИСЕ ===        */
/* ======================== */
.mgmt_edo_about {
    padding: 60px 0;
    background: var(--white);
}

.mgmt_edo_about-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.mgmt_edo_about-inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mgmt_edo_about-inner h2 span { color: var(--accent); }

.mgmt_edo_about-inner p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 16px;
}

.mgmt_edo_about-inner p:last-child { margin: 0; }

/* ======================== */
/* === ЭТАПЫ РАБОТЫ ===     */
/* ======================== */
.mgmt_edo_workflow {
    padding: 80px 0;
    background: var(--bg-light);
}

.mgmt_edo_workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mgmt_edo_wf-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mgmt_edo_wf-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;
}

.mgmt_edo_wf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.mgmt_edo_wf-card:hover::before { opacity: 1; }

.mgmt_edo_wf-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(0,190,162,0.1);
    line-height: 1;
}

.mgmt_edo_wf-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.mgmt_edo_wf-icon svg { width: 20px; height: 20px; }

.mgmt_edo_wf-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin: 0;
}

.mgmt_edo_wf-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === ПРЕИМУЩЕСТВА ===     */
/* ======================== */
.mgmt_edo_advantages {
    padding: 80px 0;
    background: var(--white);
}

.mgmt_edo_adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mgmt_edo_adv-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.mgmt_edo_adv-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mgmt_edo_adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: var(--accent);
    background: var(--white);
}

.mgmt_edo_adv-num {
    font-size: 52px;
    font-weight: 800;
    color: rgba(0,190,162,0.1);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
}

.mgmt_edo_adv-content { flex: 1; }

.mgmt_edo_adv-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 14px;
}

.mgmt_edo_adv-icon svg { width: 22px; height: 22px; }

.mgmt_edo_adv-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.mgmt_edo_adv-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ======================== */
/* === ПОЧЕМУ ДИАДОК ===    */
/* ======================== */
.mgmt_edo_why {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.mgmt_edo_why::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;
}

.mgmt_edo_why::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,80,120,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.mgmt_edo_why-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mgmt_edo_why-left h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mgmt_edo_why-left h2 span { color: var(--accent); }

.mgmt_edo_why-left p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0 0 16px;
}

.mgmt_edo_why-left p:last-child { margin: 0; }

.mgmt_edo_why-cta {
    margin-top: 32px;
}

.mgmt_edo_why-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mgmt_edo_why-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mgmt_edo_why-point:hover {
    background: rgba(0,190,162,0.08);
    border-color: rgba(0,190,162,0.25);
}

.mgmt_edo_why-point-icon {
    width: 40px; height: 40px;
    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;
}

.mgmt_edo_why-point-icon svg { width: 18px; height: 18px; }

.mgmt_edo_why-point-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.mgmt_edo_why-point-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1024px) {
    .mgmt_edo_hero-wrapper { grid-template-columns: 1fr; }
    .mgmt_edo_hero-anim    { display: none; }
    .mgmt_edo_why-inner    { grid-template-columns: 1fr; gap: 40px; }
    .mgmt_edo_workflow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mgmt_edo_adv-grid     { grid-template-columns: 1fr; }
    .mgmt_edo_workflow-grid { grid-template-columns: 1fr; }
    .mgmt_edo_adv-card     { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
    .mgmt_edo_adv-num { display: none; }
}
/* End */
/* /local/css/kontur/mgmt_edo.css?177940074718881 */
