

/* Start:/local/css/kontur/arh_edo.css?177569523922749*/
.arh_edo_hero, .arh_edo_problems, .arh_edo_compare,
.arh_edo_about, .arh_edo_features, .arh_edo_how {
    --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:         #ef4444;
    --danger-light:   rgba(239, 68, 68, 0.08);
}

.arh_edo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.arh_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;
}

.arh_edo_section-title span { color: var(--accent); }

.arh_edo_section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 52px;
}

/* === КНОПКИ === */
.arh_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;
}

.arh_edo_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,190,162,0.3);
}

.arh_edo_btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.arh_edo_btn-primary:hover svg { transform: translateX(4px); }

.arh_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;
}

.arh_edo_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* ======================== */
/* === HERO ===             */
/* ======================== */
.arh_edo_hero {
    position: relative;
    padding: 100px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.arh_edo_hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.arh_edo_hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.arh_edo_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.arh_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%);
}

.arh_edo_hero-glow--2 {
    bottom: -20%; left: -5%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(0,80,120,0.25) 0%, transparent 70%);
}

.arh_edo_hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
}

.arh_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;
}

.arh_edo_hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: arh_pulse 2s ease-in-out infinite;
}

@keyframes arh_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.arh_edo_hero-title {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.arh_edo_hero-title-accent { color: var(--accent); }

.arh_edo_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.arh_edo_hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.arh_edo_hero-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.arh_edo_hero-bullet svg {
    width: 18px; height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.arh_edo_hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* === HERO АНИМАЦИЯ — Папки / документы летят в облако === */
.arh_edo_hero-anim {
    position: relative;
    height: 380px;
    animation: arh_fadeLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes arh_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Центральное облако */
.arh_cloud {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 80px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.arh_cloud-icon {
    width: 100%; height: 100%;
    background: rgba(0,190,162,0.12);
    border: 2px solid rgba(0,190,162,0.45);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--accent);
    backdrop-filter: blur(8px);
}

.arh_cloud-icon svg { width: 32px; height: 32px; }

.arh_cloud-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Пульсирующий ореол вокруг облака */
.arh_cloud-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0,190,162,0.2);
    animation: arh_ring 3s ease-out infinite;
}

.arh_cloud-ring--1 { width: 160px; height: 120px; transform: translate(-50%,-50%); animation-delay: 0s; }
.arh_cloud-ring--2 { width: 220px; height: 165px; transform: translate(-50%,-50%); animation-delay: 0.9s; }
.arh_cloud-ring--3 { width: 280px; height: 210px; transform: translate(-50%,-50%); animation-delay: 1.8s; }

@keyframes arh_ring {
    0%   { opacity: 0.7; transform: translate(-50%,-50%) scale(0.6); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(1.2); }
}

/* Документы-иконки по краям */
.arh_doc-node {
    position: absolute;
    width: 70px; height: 64px;
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    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: 5px;
    color: rgba(255,255,255,0.65);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 4;
}

.arh_doc-node svg { width: 22px; height: 22px; }

.arh_doc-node--1 { top: 16px;  left: 16px;  animation: arh_nodeGlow 4s ease-in-out 0s infinite; }
.arh_doc-node--2 { top: 16px;  right: 16px; animation: arh_nodeGlow 4s ease-in-out 1s infinite; }
.arh_doc-node--3 { bottom: 16px; left: 16px; animation: arh_nodeGlow 4s ease-in-out 2s infinite; }
.arh_doc-node--4 { bottom: 16px; right: 16px; animation: arh_nodeGlow 4s ease-in-out 3s infinite; }

@keyframes arh_nodeGlow {
    0%, 100% { border-color: rgba(255,255,255,0.12); }
    50%       { border-color: rgba(0,190,162,0.35); box-shadow: 0 4px 20px rgba(0,190,162,0.15); }
}

/* Летящие документы к облаку */
.arh_fly-doc {
    position: absolute;
    width: 20px; height: 24px;
    background: var(--white);
    border-radius: 2px 5px 2px 2px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    z-index: 6;
    opacity: 0;
}

.arh_fly-doc::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6px; height: 6px;
    background: #e2e8f0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.arh_fly-doc--1 { animation: arh_fly1 2.8s ease-in-out 0s infinite; }
.arh_fly-doc--2 { animation: arh_fly2 2.8s ease-in-out 0.7s infinite; }
.arh_fly-doc--3 { animation: arh_fly3 2.8s ease-in-out 1.4s infinite; }
.arh_fly-doc--4 { animation: arh_fly4 2.8s ease-in-out 2.1s infinite; }

@keyframes arh_fly1 {
    0%   { top: 28px;  left: 34px;  opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { top: calc(50% - 12px); left: calc(50% - 10px); opacity: 0; transform: scale(0.6); }
}
@keyframes arh_fly2 {
    0%   { top: 28px;  right: 34px; left: auto; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { top: calc(50% - 12px); right: calc(50% - 10px); left: auto; opacity: 0; transform: scale(0.6); }
}
@keyframes arh_fly3 {
    0%   { bottom: 28px; top: auto; left: 34px; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { bottom: calc(50% - 12px); top: auto; left: calc(50% - 10px); opacity: 0; transform: scale(0.6); }
}
@keyframes arh_fly4 {
    0%   { bottom: 28px; top: auto; right: 34px; left: auto; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; }
    100% { bottom: calc(50% - 12px); top: auto; right: calc(50% - 10px); left: auto; opacity: 0; transform: scale(0.6); }
}

/* Статистика под анимацией */
.arh_hero-stat-row {
    position: absolute;
    bottom: -35px; left: 0; right: 0;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.arh_hero-stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    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: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    white-space: nowrap;
}

.arh_hero-stat-pill span {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
}

/* ======================== */
/* === ПРОБЛЕМЫ ===         */
/* ======================== */
.arh_edo_problems {
    padding: 80px 0;
    background: var(--bg-light);
}

.arh_edo_problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.arh_edo_problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--danger);
    transition: all 0.3s ease;
    position: relative;
}

.arh_edo_problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(239,68,68,0.1);
}

.arh_edo_problem-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(239,68,68,0.15);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.arh_edo_problem-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.arh_edo_problem-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === НОВЫЙ БЛОК: СРАВНЕНИЕ БЫЛО/СТАЛО === */
/* ======================== */
.arh_edo_compare {
    padding: 80px 0;
    background: var(--white);
}

.arh_edo_compare-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    background: var(--bg-light);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.arh_edo_compare-btn {
    padding: 10px 28px;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.arh_edo_compare-btn svg { width: 16px; height: 16px; }

.arh_edo_compare-btn--paper.active {
    background: var(--danger);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}

.arh_edo_compare-btn--digital.active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,190,162,0.3);
}

.arh_edo_compare-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Карточка сравнения */
.arh_edo_cmp-card {
    border-radius: 16px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Состояние «бумага» */
.arh_edo_cmp-card.paper {
    background: var(--danger-light);
    border: 1px solid rgba(239,68,68,0.2);
}

.arh_edo_cmp-card.paper .arh_edo_cmp-icon {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
    border-color: rgba(239,68,68,0.2);
}

.arh_edo_cmp-card.paper .arh_edo_cmp-status {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

/* Состояние «цифра» */
.arh_edo_cmp-card.digital {
    background: rgba(0,190,162,0.04);
    border: 1px solid rgba(0,190,162,0.2);
}

.arh_edo_cmp-card.digital .arh_edo_cmp-icon {
    background: var(--accent-light);
    color: var(--accent);
    border-color: rgba(0,190,162,0.2);
}

.arh_edo_cmp-card.digital .arh_edo_cmp-status {
    background: var(--accent-light);
    color: var(--accent);
}

.arh_edo_cmp-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.35s ease;
}

.arh_edo_cmp-icon svg { width: 22px; height: 22px; }

.arh_edo_cmp-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: all 0.35s ease;
}

.arh_edo_cmp-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.35s ease;
}

.arh_edo_cmp-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    transition: all 0.35s ease;
}

/* Текст скрытый/видимый */
.arh_edo_cmp-card .arh_edo_cmp-text--paper,
.arh_edo_cmp-card .arh_edo_cmp-text--digital {
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.arh_edo_cmp-card.paper  .arh_edo_cmp-text--digital { display: none; }
.arh_edo_cmp-card.digital .arh_edo_cmp-text--paper  { display: none; }

/* ======================== */
/* === ЧТО ТАКОЕ АРХИВ === */
/* ======================== */
.arh_edo_about {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.arh_edo_about::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.arh_edo_about::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 10%;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,80,120,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.arh_edo_about-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.arh_edo_about .arh_edo_section-title { color: var(--white); }

.arh_edo_about-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 28px;
}

.arh_edo_about-types {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.arh_edo_about-type {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.arh_edo_about-type:hover {
    background: rgba(0,190,162,0.1);
    border-color: rgba(0,190,162,0.3);
}

.arh_edo_about-type-icon {
    width: 42px; height: 42px;
    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;
}

.arh_edo_about-type-icon svg { width: 19px; height: 19px; }

.arh_edo_about-type-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.arh_edo_about-type-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}

/* Правая колонка — плюсы */
.arh_edo_about-plusses {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.arh_edo_about-plus {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.arh_edo_about-plus:hover {
    background: rgba(0,190,162,0.08);
    border-color: rgba(0,190,162,0.25);
    transform: translateX(4px);
}

.arh_edo_about-plus-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.arh_edo_about-plus-icon svg { width: 20px; height: 20px; }

.arh_edo_about-plus-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.arh_edo_about-plus-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ======================== */
/* === ЧТО УМЕЕТ ДИАДОК === */
/* ======================== */
.arh_edo_features {
    padding: 80px 0;
    background: var(--bg-light);
}

.arh_edo_features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.arh_edo_feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 22px 18px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.arh_edo_feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
}

.arh_edo_feature-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: background 0.3s;
}

.arh_edo_feature-card:hover .arh_edo_feature-icon {
    background: rgba(0,190,162,0.18);
}

.arh_edo_feature-icon svg { width: 22px; height: 22px; }

.arh_edo_feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* ======================== */
/* === КАК ПОДКЛЮЧИТЬ ===   */
/* ======================== */
.arh_edo_how {
    padding: 80px 0;
    background: var(--white);
}

.arh_edo_how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
}

.arh_edo_how-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 36px;
}

.arh_edo_how-step:last-child { padding-bottom: 0; }

.arh_edo_how-step: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%);
}

.arh_edo_how-num {
    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);
    position: relative;
    z-index: 1;
}

.arh_edo_how-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    margin-top: 10px;
    line-height: 1.3;
}

.arh_edo_how-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1100px) {
    .arh_edo_features-grid { grid-template-columns: repeat(3, 1fr); }
    .arh_edo_compare-cards  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .arh_edo_hero-wrapper   { grid-template-columns: 1fr; }
    .arh_edo_hero-anim      { display: none; }
    .arh_edo_about-wrapper  { grid-template-columns: 1fr; }
    .arh_edo_problems-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .arh_edo_problems-grid  { grid-template-columns: 1fr; }
    .arh_edo_compare-cards  { grid-template-columns: 1fr; }
    .arh_edo_features-grid  { grid-template-columns: repeat(2, 1fr); }
    .arh_edo_compare-toggle { flex-direction: column; width: 100%; border-radius: 16px; }
}

@media (max-width: 480px) {
    .arh_edo_features-grid  { grid-template-columns: 1fr; }
}
/* End */
/* /local/css/kontur/arh_edo.css?177569523922749 */
