

/* Start:/local/css/kontur/buh_edo.css?177569523926998*/
/* ======================================================
   buh_edo.css — Бухгалтерский ЭДО в Контур Диадок
   Префикс: buh_edo_
   ====================================================== */

.buh_edo_hero, .buh_edo_advantages, .buh_edo_connect,
.buh_edo_signatures, .buh_edo_primary, .buh_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;
}

.buh_edo_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.buh_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;
}

.buh_edo_section-title span { color: var(--accent); }

.buh_edo_section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 52px;
}

/* === КНОПКИ === */
.buh_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;
}

.buh_edo_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,190,162,0.3);
}

.buh_edo_btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.buh_edo_btn-primary:hover svg { transform: translateX(4px); }

.buh_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;
}

.buh_edo_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* ======================== */
/* === HERO ===             */
/* ======================== */
.buh_edo_hero {
    position: relative;
    padding: 100px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.buh_edo_hero-bg { position: absolute; inset: 0; z-index: 0; }

.buh_edo_hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.buh_edo_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.buh_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%);
}

.buh_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%);
}

.buh_edo_hero-wrapper {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
}

.buh_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;
}

.buh_edo_hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: buh_pulse 2s ease-in-out infinite;
}

@keyframes buh_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.buh_edo_hero-title {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.buh_edo_hero-title-accent { color: var(--accent); }

.buh_edo_hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.buh_edo_hero-keys {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.buh_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);
}

.buh_edo_hero-key svg { width: 14px; height: 14px; color: var(--accent); }

.buh_edo_hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* === HERO АНИМАЦИЯ — Бухгалтерские документы летят к ФНС === */
.buh_edo_hero-anim {
    position: relative;
    height: 380px;
    animation: buh_fadeLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes buh_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Центральный блок — система ЭДО */
.buh_center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110px; height: 80px;
    background: rgba(0,190,162,0.12);
    border: 2px solid rgba(0,190,162,0.45);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 5;
    backdrop-filter: blur(8px);
}

.buh_center svg { width: 28px; height: 28px; color: var(--accent); }

.buh_center-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Пульсирующие кольца */
.buh_ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0,190,162,0.15);
    animation: buh_ring 3.5s ease-out infinite;
}

.buh_ring--1 { width: 160px; height: 120px; transform: translate(-50%,-50%); animation-delay: 0s; }
.buh_ring--2 { width: 240px; height: 180px; transform: translate(-50%,-50%); animation-delay: 1.1s; }
.buh_ring--3 { width: 320px; height: 240px; transform: translate(-50%,-50%); animation-delay: 2.2s; }

@keyframes buh_ring {
    0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(0.6); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(1.15); }
}

/* Узлы по углам */
.buh_node {
    position: absolute;
    width: 76px; height: 68px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    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;
    transition: all 0.3s ease;
}

.buh_node svg { width: 20px; height: 20px; }

.buh_node--1 { top: 18px;  left: 18px;  animation: buh_nodeGlow 5s ease-in-out 0s infinite; }
.buh_node--2 { top: 18px;  right: 18px; animation: buh_nodeGlow 5s ease-in-out 1.2s infinite; }
.buh_node--3 { bottom: 18px; left: 18px; animation: buh_nodeGlow 5s ease-in-out 2.4s infinite; }
.buh_node--4 { bottom: 18px; right: 18px; animation: buh_nodeGlow 5s ease-in-out 3.6s infinite; }

@keyframes buh_nodeGlow {
    0%, 100% { border-color: rgba(255,255,255,0.1); }
    50%       { border-color: rgba(0,190,162,0.4); box-shadow: 0 4px 20px rgba(0,190,162,0.15); }
}

/* Летящие документы */
.buh_fly {
    position: absolute;
    width: 22px; height: 26px;
    background: var(--white);
    border-radius: 3px 6px 3px 3px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    z-index: 6;
    opacity: 0;
}

.buh_fly::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 7px; height: 7px;
    background: #e2e8f0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.buh_fly--1 { animation: buh_fly1 3s ease-in-out 0s infinite; }
.buh_fly--2 { animation: buh_fly2 3s ease-in-out 0.75s infinite; }
.buh_fly--3 { animation: buh_fly3 3s ease-in-out 1.5s infinite; }
.buh_fly--4 { animation: buh_fly4 3s ease-in-out 2.25s infinite; }

@keyframes buh_fly1 {
    0%   { top: 28px; left: 32px; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { top: calc(50% - 13px); left: calc(50% - 11px); opacity: 0; transform: scale(0.6); }
}
@keyframes buh_fly2 {
    0%   { top: 28px; right: 32px; left: auto; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { top: calc(50% - 13px); right: calc(50% - 11px); left: auto; opacity: 0; transform: scale(0.6); }
}
@keyframes buh_fly3 {
    0%   { bottom: 28px; left: 32px; top: auto; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { bottom: calc(50% - 13px); left: calc(50% - 11px); top: auto; opacity: 0; transform: scale(0.6); }
}
@keyframes buh_fly4 {
    0%   { bottom: 28px; right: 32px; top: auto; left: auto; opacity: 0; transform: scale(0.8); }
    15%  { opacity: 1; transform: scale(1); }
    85%  { opacity: 1; }
    100% { bottom: calc(50% - 13px); right: calc(50% - 11px); top: auto; left: auto; opacity: 0; transform: scale(0.6); }
}

/* Таблетки статистики */
.buh_stats-row {
    position: absolute;
    bottom: -30px; left: 0; right: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.buh_stat-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    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.65);
    font-weight: 600;
    white-space: nowrap;
}

.buh_stat-pill span {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
}

/* ======================== */
/* === ПРЕИМУЩЕСТВА ===     */
/* ======================== */
.buh_edo_advantages {
    padding: 80px 0;
    background: var(--bg-light);
}

.buh_edo_adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.buh_edo_adv-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.buh_edo_adv-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;
}

.buh_edo_adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.buh_edo_adv-card:hover::before { opacity: 1; }

.buh_edo_adv-num {
    font-size: 38px;
    font-weight: 800;
    color: rgba(0,190,162,0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.buh_edo_adv-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.buh_edo_adv-icon svg { width: 22px; height: 22px; }

.buh_edo_adv-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.buh_edo_adv-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === КАК ПОДКЛЮЧИТЬ ===   */
/* ======================== */
.buh_edo_connect {
    padding: 80px 0;
    background: var(--white);
}

.buh_edo_connect-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.buh_edo_steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.buh_edo_step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 32px;
}

.buh_edo_step:last-child { padding-bottom: 0; }

.buh_edo_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%);
}

.buh_edo_step-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;
}

.buh_edo_step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    margin-top: 10px;
    line-height: 1.3;
}

.buh_edo_step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Боковая карточка */
.buh_edo_connect-card {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.buh_edo_connect-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;
}

.buh_edo_connect-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.buh_edo_connect-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative; z-index: 1;
    margin-bottom: 28px;
}

.buh_edo_connect-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.buh_edo_connect-feature-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;
}

.buh_edo_connect-feature-icon svg { width: 16px; height: 16px; }

.buh_edo_connect-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.buh_edo_connect-feature-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ======================== */
/* === ВИДЫ ПОДПИСЕЙ ===    */
/* ======================== */
.buh_edo_signatures {
    padding: 80px 0;
    background: var(--bg-light);
}

.buh_edo_sig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.buh_edo_sig-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.buh_edo_sig-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0,190,162,0.1);
}

.buh_edo_sig-card--top {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
}

.buh_edo_sig-num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(0,190,162,0.12);
    line-height: 1;
    margin-bottom: 10px;
}

.buh_edo_sig-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.buh_edo_sig-card--top .buh_edo_sig-badge {
    background: var(--accent-light);
    color: var(--accent);
    border-color: rgba(0,190,162,0.25);
}

.buh_edo_sig-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.buh_edo_sig-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
}

.buh_edo_sig-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-top: auto;
}

.buh_edo_sig-price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
}

.buh_edo_sig-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;
}

.buh_edo_sig-btn:hover { background: var(--accent-hover); }

/* Блок обязательных случаев */
.buh_edo_sig-required {
    background: var(--bg-dark);
    border-radius: 18px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.buh_edo_sig-required::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.buh_edo_sig-required-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative; z-index: 1;
}

.buh_edo_sig-required h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative; z-index: 1;
}

.buh_edo_sig-required p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
    position: relative; z-index: 1;
}

.buh_edo_sig-required-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative; z-index: 1;
}

.buh_edo_sig-required-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.buh_edo_sig-required-list li svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Документы для оформления ЭП */
.buh_edo_sig-docs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    position: relative; z-index: 1;
}

.buh_edo_sig-doc-tag {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 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.7);
}

.buh_edo_sig-doc-tag svg { width: 14px; height: 14px; color: var(--accent); }

/* ======================== */
/* === ПЕРВИЧНАЯ БУХ. ===   */
/* ======================== */
.buh_edo_primary {
    padding: 80px 0;
    background: var(--white);
}

.buh_edo_primary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.buh_edo_primary-card {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.buh_edo_primary-card:hover {
    border-color: var(--accent);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,190,162,0.1);
}

.buh_edo_primary-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.buh_edo_primary-icon svg { width: 20px; height: 20px; }

.buh_edo_primary-card p {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.buh_edo_primary-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 28px;
    background: var(--accent-light);
    border: 1px solid rgba(0,190,162,0.2);
    border-radius: 14px;
}

.buh_edo_primary-note svg {
    width: 22px; height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.buh_edo_primary-note p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.65;
    margin: 0;
}

/* ======================== */
/* === ТАРИФЫ ===           */
/* ======================== */
.buh_edo_tariffs {
    padding: 80px 0;
    background: var(--bg-light);
}

.buh_edo_tariff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.buh_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;
}

.buh_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;
}

.buh_edo_tariff-card:hover,
.buh_edo_tariff-card--popular {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,190,162,0.12);
}

.buh_edo_tariff-card:hover::before,
.buh_edo_tariff-card--popular::before { opacity: 1; }

.buh_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;
}

.buh_edo_tariff-docs-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.buh_edo_tariff-docs-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.buh_edo_tariff-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.buh_edo_tariff-per {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 18px;
}

.buh_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;
}

.buh_edo_tariff-btn:hover,
.buh_edo_tariff-card--popular .buh_edo_tariff-btn {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.buh_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;
}

.buh_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;
}

.buh_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;
}

.buh_edo_tariff-ep-icon svg { width: 22px; height: 22px; }

.buh_edo_tariff-ep-text {
    flex: 1; min-width: 180px;
    position: relative; z-index: 1;
}

.buh_edo_tariff-ep-text strong {
    display: block; font-size: 15px; font-weight: 700;
    color: var(--white); margin-bottom: 3px;
}

.buh_edo_tariff-ep-text span {
    font-size: 13px; color: rgba(255,255,255,0.5);
}

.buh_edo_tariff-ep-price {
    font-size: 26px; font-weight: 800;
    color: var(--accent); white-space: nowrap;
    position: relative; z-index: 1;
}

.buh_edo_tariff-ep .buh_edo_btn-primary {
    flex-shrink: 0; position: relative; z-index: 1;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1100px) {
    .buh_edo_tariff-grid { grid-template-columns: repeat(2, 1fr); }
    .buh_edo_primary-grid { grid-template-columns: repeat(2, 1fr); }
    .buh_edo_sig-required { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .buh_edo_hero-wrapper  { grid-template-columns: 1fr; }
    .buh_edo_hero-anim     { display: none; }
    .buh_edo_connect-wrapper { grid-template-columns: 1fr; }
    .buh_edo_sig-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .buh_edo_adv-grid      { grid-template-columns: 1fr; }
    .buh_edo_tariff-grid   { grid-template-columns: 1fr 1fr; }
    .buh_edo_primary-grid  { grid-template-columns: 1fr 1fr; }
    .buh_edo_tariff-ep     { flex-direction: column; align-items: flex-start; }
    .buh_edo_sig-required  { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .buh_edo_tariff-grid  { grid-template-columns: 1fr; }
    .buh_edo_primary-grid { grid-template-columns: 1fr; }
}
/* End */
/* /local/css/kontur/buh_edo.css?177569523926998 */
