

/* Start:/local/css/kontur/kadr_edo.css?177790419740488*/
/* ======================== */
/* === ПЕРЕМЕННЫЕ ===       */
/* ======================== */
.kadr_edo_hero, .kadr_edo_what, .kadr_edo_audience,
.kadr_edo_tasks, .kadr_edo_features, .kadr_edo_benefits,
.kadr_edo_docs, .kadr_edo_signatures, .kadr_edo_roles,
.kadr_edo_process, .kadr_edo_tariffs, .kadr_edo_steps,
.kadr_edo_law, .kadr_edo_security, .kadr_edo_integrations,
.kadr_edo_compare, .kadr_edo_cases, .kadr_edo_faq,
.kadr_edo_objections {
    --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;
    --danger:         #e74c3c;
    --danger-light:   rgba(231, 76, 60, 0.08);
}

.kadr_edo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.kadr_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;
}

.kadr_edo_section-title span { color: var(--accent); }

.kadr_edo_section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 52px;
}

/* === КНОПКИ === */
.kadr_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;
}

.kadr_edo_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,190,162,0.3);
}

.kadr_edo_btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.kadr_edo_btn-primary:hover svg { transform: translateX(4px); }

.kadr_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;
}

.kadr_edo_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* ======================== */
/* === HERO ===             */
/* ======================== */
.kadr_edo_hero {
    position: relative;
    padding: 100px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kadr_edo_hero-bg {
    position: absolute; inset: 0; z-index: 0;
}

.kadr_edo_hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.kadr_edo_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.kadr_edo_hero-glow--1 {
    top: -20%; right: 8%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(0,190,162,0.18) 0%, transparent 70%);
}

.kadr_edo_hero-glow--2 {
    bottom: -25%; left: -5%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(0,80,120,0.25) 0%, transparent 70%);
}

.kadr_edo_hero-wrapper {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
}

.kadr_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;
}

.kadr_edo_hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: kadr_pulse 2s ease-in-out infinite;
}

@keyframes kadr_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.kadr_edo_hero-title {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.kadr_edo_hero-title-accent { color: var(--accent); }

.kadr_edo_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.kadr_edo_hero-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
}

.kadr_edo_hero-perk {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.kadr_edo_hero-perk svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.kadr_edo_hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* === HERO АНИМАЦИЯ === */
.kadr_edo_hero-anim {
    position: relative;
    height: 380px;
    animation: kadr_fadeLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes kadr_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.kadr_route {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: 100%;
    justify-content: center;
}

.kadr_route-node {
    width: 180px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.kadr_route-node-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;
}

.kadr_route-node-icon svg { width: 17px; height: 17px; }

.kadr_route-node-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.kadr_route-node-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

.kadr_route-arrow {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, rgba(0,190,162,0.5), rgba(0,190,162,0.1));
    position: relative;
    z-index: 1;
}

.kadr_route-arrow::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(0,190,162,0.5);
}

.kadr_route-node:nth-child(1)  { animation: kadr_nodeActive 4s ease-in-out 0s infinite; }
.kadr_route-node:nth-child(3)  { animation: kadr_nodeActive 4s ease-in-out 0.8s infinite; }
.kadr_route-node:nth-child(5)  { animation: kadr_nodeActive 4s ease-in-out 1.6s infinite; }
.kadr_route-node:nth-child(7)  { animation: kadr_nodeActive 4s ease-in-out 2.4s infinite; }

@keyframes kadr_nodeActive {
    0%, 60%, 100% { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.07); }
    30%           { border-color: rgba(0,190,162,0.45); background: rgba(0,190,162,0.1); box-shadow: 0 4px 20px rgba(0,190,162,0.15); }
}

.kadr_route-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: rgba(0,190,162,0.2);
    border: 1px solid rgba(0,190,162,0.4);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.kadr_hero-counter {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kadr_hero-counter-pill {
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    text-align: center;
    white-space: nowrap;
}

.kadr_hero-counter-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.kadr_hero-counter-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    display: block;
    margin-top: 3px;
}

/* ======================== */
/* === ЧТО ТАКОЕ КЭДО ===  */
/* ======================== */
.kadr_edo_what {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_what-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.kadr_edo_what-main p {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 18px;
}

.kadr_edo_what-main p:last-child { margin-bottom: 0; }

.kadr_edo_what-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.kadr_edo_what-aside-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.kadr_edo_what-aside-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    border: 1px solid rgba(0,190,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.kadr_edo_what-aside-icon svg { width: 20px; height: 20px; }

.kadr_edo_what-aside-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.kadr_edo_what-aside-item span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ======================== */
/* === КОМУ ПОДХОДИТ ===    */
/* ======================== */
.kadr_edo_audience {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kadr_edo_audience-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_audience-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--accent-light);
    border: 1px solid rgba(0,190,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 18px;
}

.kadr_edo_audience-icon svg { width: 22px; height: 22px; }

.kadr_edo_audience-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.kadr_edo_audience-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ======================== */
/* === ЗАДАЧИ ===           */
/* ======================== */
.kadr_edo_tasks {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kadr_edo_task-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_task-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_task-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    border: 1px solid rgba(0,190,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 18px;
}

.kadr_edo_task-icon svg { width: 20px; height: 20px; }

.kadr_edo_task-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.kadr_edo_task-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ======================== */
/* === ФУНКЦИИ ===          */
/* ======================== */
.kadr_edo_features {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kadr_edo_feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_feature-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(0,190,162,0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.kadr_edo_feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.kadr_edo_feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ======================== */
/* === ШАГИ ВНЕДРЕНИЯ ===   */
/* ======================== */
.kadr_edo_steps {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.kadr_edo_steps::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.kadr_edo_steps .kadr_edo_section-title { color: var(--white); }
.kadr_edo_steps .kadr_edo_section-sub   { color: rgba(255,255,255,0.6); }

.kadr_edo_steps-timeline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 48px;
}

.kadr_edo_step-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.kadr_edo_step-item:last-child { border-bottom: none; }

.kadr_edo_step-num {
    width: 48px; height: 48px;
    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;
    color: var(--accent);
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.kadr_edo_step-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.kadr_edo_step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

.kadr_edo_steps-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background: rgba(0,190,162,0.08);
    border: 1px solid rgba(0,190,162,0.2);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.kadr_edo_steps-cta p {
    flex: 1;
    min-width: 240px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.kadr_edo_steps-cta strong { color: var(--accent); }

/* ======================== */
/* === ЗАКОНОДАТЕЛЬСТВО === */
/* ======================== */
.kadr_edo_law {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_law-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.kadr_edo_law-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_law-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_law-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: 14px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.25);
}

.kadr_edo_law-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.kadr_edo_law-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ======================== */
/* === БЕЗОПАСНОСТЬ ===     */
/* ======================== */
.kadr_edo_security {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kadr_edo_security-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_security-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--accent-light);
    border: 1px solid rgba(0,190,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 18px;
}

.kadr_edo_security-icon svg { width: 22px; height: 22px; }

.kadr_edo_security-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.kadr_edo_security-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ======================== */
/* === ИНТЕГРАЦИИ ===       */
/* ======================== */
.kadr_edo_integrations {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kadr_edo_integration-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_integration-card--main {
    grid-column: 1 / -1;
    background: var(--bg-dark);
    border-color: rgba(0,190,162,0.2);
}

.kadr_edo_integration-card--main p { color: rgba(255,255,255,0.7); }

.kadr_edo_integration-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.kadr_edo_integration-card--main h3 { color: var(--white); }

.kadr_edo_integration-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.kadr_edo_integration-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.kadr_edo_integration-features span {
    padding: 5px 14px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* ======================== */
/* === СРАВНЕНИЕ ===        */
/* ======================== */
.kadr_edo_compare {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_compare-table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--white);
}

.kadr_edo_compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.kadr_edo_compare-table th,
.kadr_edo_compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.kadr_edo_compare-table thead th {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    background: var(--bg-light);
}

.kadr_edo_compare-table tbody tr:last-child td { border-bottom: none; }

.kadr_edo_compare-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
    min-width: 220px;
}

.kadr_edo_compare-old {
    color: var(--text-secondary) !important;
    background: rgba(231,76,60,0.03);
}

.kadr_edo_compare-new {
    color: var(--accent) !important;
    font-weight: 600;
    background: rgba(0,190,162,0.04);
}

.kadr_edo_compare-table tbody tr:hover {
    background: rgba(0,190,162,0.02);
}

/* ======================== */
/* === КЕЙСЫ ===            */
/* ======================== */
.kadr_edo_cases {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kadr_edo_case-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_case-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: 14px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.25);
}

.kadr_edo_case-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.3;
}

.kadr_edo_case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 10px;
}

.kadr_edo_case-card p:last-child { margin-bottom: 0; }

.kadr_edo_case-card strong { color: var(--text-main); }

/* ======================== */
/* === ПРЕИМУЩЕСТВА ===     */
/* ======================== */
.kadr_edo_benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.kadr_edo_benefit-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kadr_edo_benefit-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;
}

.kadr_edo_benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_benefit-card:hover::before { opacity: 1; }

.kadr_edo_benefit-for {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.25);
}

.kadr_edo_benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.kadr_edo_benefit-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kadr_edo_benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.kadr_edo_benefit-list li svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* IT блок */
.kadr_edo_it-card {
    background: var(--bg-dark);
    border-radius: 18px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.kadr_edo_it-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.kadr_edo_it-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    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;
}

.kadr_edo_it-icon svg { width: 28px; height: 28px; }

.kadr_edo_it-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 8px;
    position: relative; z-index: 1;
}

.kadr_edo_it-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    position: relative; z-index: 1;
}

.kadr_edo_it-perks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative; z-index: 1;
    margin-left: auto;
}

.kadr_edo_it-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.kadr_edo_it-perk svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ======================== */
/* === ДОКУМЕНТЫ ===        */
/* ======================== */
.kadr_edo_docs {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_docs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.kadr_edo_docs-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kadr_edo_docs-col h3 svg {
    width: 20px; height: 20px;
    color: var(--accent);
}

.kadr_edo_doc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kadr_edo_doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.kadr_edo_doc-item:hover {
    border-color: var(--accent);
    background: rgba(0,190,162,0.04);
    transform: translateX(4px);
}

.kadr_edo_doc-item svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Предупреждение в документах */
.kadr_edo_docs-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--danger-light);
    border: 1px solid rgba(231,76,60,0.2);
    border-radius: 12px;
    margin-top: 20px;
}

.kadr_edo_docs-warning > svg {
    width: 20px; height: 20px;
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
}

.kadr_edo_docs-warning strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 4px;
}

.kadr_edo_docs-warning span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ======================== */
/* === ВИДЫ ПОДПИСЕЙ ===    */
/* ======================== */
.kadr_edo_signatures {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_sig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kadr_edo_sig-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.kadr_edo_sig-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(0,190,162,0.1);
}

.kadr_edo_sig-card--top {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
}

.kadr_edo_sig-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0,190,162,0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.kadr_edo_sig-card--top .kadr_edo_sig-num { color: rgba(0,190,162,0.2); }

.kadr_edo_sig-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.kadr_edo_sig-card--top .kadr_edo_sig-type {
    background: var(--accent-light);
    color: var(--accent);
    border-color: rgba(0,190,162,0.25);
}

.kadr_edo_sig-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.kadr_edo_sig-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.kadr_edo_sig-details {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.kadr_edo_sig-details li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.kadr_edo_sig-details li svg {
    width: 14px; height: 14px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.kadr_edo_sig-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: 10px;
}

.kadr_edo_sig-price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
}

.kadr_edo_sig-price-btn {
    padding: 8px 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kadr_edo_sig-price-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ======================== */
/* === FAQ ===              */
/* ======================== */
.kadr_edo_faq {
    padding: 80px 0;
    background: var(--white);
}

.kadr_edo_faq-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.kadr_edo_faq-item {
    border-bottom: 1px solid var(--border);
    width: calc(50% - 5px);
}

.kadr_edo_faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.kadr_edo_faq-q span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.kadr_edo_faq-q svg {
    width: 20px; height: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.kadr_edo_faq-item.active .kadr_edo_faq-q svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.kadr_edo_faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.kadr_edo_faq-item.active .kadr_edo_faq-a {
    max-height: 400px;
    padding-bottom: 20px;
}

.kadr_edo_faq-a p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ======================== */
/* === ВОЗРАЖЕНИЯ ===       */
/* ======================== */
.kadr_edo_objections {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_objections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kadr_edo_objection-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kadr_edo_objection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--accent);
}

.kadr_edo_objection-fear {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.kadr_edo_objection-fear svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
}

.kadr_edo_objection-reality {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.kadr_edo_objection-reality svg {
    width: 18px; height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ======================== */
/* === ТАРИФЫ ===           */
/* ======================== */
.kadr_edo_tariffs {
    padding: 80px 0;
    background: var(--bg-light);
}

.kadr_edo_tariff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.kadr_edo_tariff-card {
    background: var(--white);
    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;
}

.kadr_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;
}

.kadr_edo_tariff-card:hover,
.kadr_edo_tariff-card--popular {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,190,162,0.12);
}

.kadr_edo_tariff-card:hover::before,
.kadr_edo_tariff-card--popular::before { opacity: 1; }

.kadr_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;
}

.kadr_edo_tariff-docs-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.kadr_edo_tariff-docs-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.kadr_edo_tariff-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.kadr_edo_tariff-per {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 18px;
}

.kadr_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;
}

.kadr_edo_tariff-btn:hover,
.kadr_edo_tariff-card--popular .kadr_edo_tariff-btn {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.kadr_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;
}

.kadr_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;
}

.kadr_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;
}

.kadr_edo_tariff-ep-icon svg { width: 22px; height: 22px; }

.kadr_edo_tariff-ep-text {
    flex: 1; min-width: 180px;
    position: relative; z-index: 1;
}

.kadr_edo_tariff-ep-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.kadr_edo_tariff-ep-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.kadr_edo_tariff-ep-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
    position: relative; z-index: 1;
}

.kadr_edo_tariff-ep .kadr_edo_btn-primary {
    flex-shrink: 0;
    position: relative; z-index: 1;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1100px) {
    .kadr_edo_tariff-grid   { grid-template-columns: repeat(2, 1fr); }
    .kadr_edo_sig-grid      { grid-template-columns: 1fr; }
    .kadr_edo_features-grid { grid-template-columns: repeat(2, 1fr); }
    .kadr_edo_security-grid { grid-template-columns: repeat(2, 1fr); }
    .kadr_edo_audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .kadr_edo_hero-wrapper   { grid-template-columns: 1fr; }
    .kadr_edo_hero-anim      { display: none; }
    .kadr_edo_what-grid      { grid-template-columns: 1fr; }
    .kadr_edo_what-aside     { position: static; flex-direction: row; flex-wrap: wrap; }
    .kadr_edo_what-aside-item { flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
    .kadr_edo_benefits-grid  { grid-template-columns: 1fr; }
    .kadr_edo_docs-wrapper   { grid-template-columns: 1fr; }
    .kadr_edo_tariff-grid    { grid-template-columns: 1fr 1fr; }
    .kadr_edo_hero-perks     { grid-template-columns: 1fr; }
    .kadr_edo_it-card        { flex-direction: column; align-items: flex-start; }
    .kadr_edo_it-perks       { margin-left: 0; }
    .kadr_edo_tariff-ep      { flex-direction: column; align-items: flex-start; }
    .kadr_edo_tasks-grid     { grid-template-columns: 1fr; }
    .kadr_edo_law-grid       { grid-template-columns: 1fr; }
    .kadr_edo_cases-grid     { grid-template-columns: 1fr; }
    .kadr_edo_objections-grid { grid-template-columns: 1fr; }
    .kadr_edo_integrations-grid { grid-template-columns: 1fr; }
    .kadr_edo_steps-cta      { flex-direction: column; }
}

@media (max-width: 480px) {
    .kadr_edo_tariff-grid    { grid-template-columns: 1fr; }
    .kadr_edo_features-grid  { grid-template-columns: 1fr; }
    .kadr_edo_security-grid  { grid-template-columns: 1fr; }
    .kadr_edo_audience-grid  { grid-template-columns: 1fr; }
    .kadr_edo_faq-item {width: 100%;}
}
/* End */
/* /local/css/kontur/kadr_edo.css?177790419740488 */
