/* =========================================================
BURSTY BOTTling BLOCK
Стили блока розлива поверх UI-kit.
Все токены (--accent, --space-*, --radius-*) берутся из UI-kit.
========================================================= */

/* ---------- 1. Секция-обёртка ---------- */
.bursty-bottling {
    position: relative;
}

/* Подзаголовок внутри title-underline */
.bursty-bottling__subtitle {
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 0;
}

/* ---------- 2. Карточка шага ---------- */
.bursty-bottling__card {
    height: 100%;
    transition:
        transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 0.3s ease;
    will-change: transform;
}

/* Hover: подъём + акцентная подсветка */
.bursty-bottling__card:hover {
    transform: translateY(-6px);
    box-shadow:
        var(--shadow-lg),
        0 0 40px -10px var(--accent-alpha-20);
    border-color: var(--accent-alpha-40);
}

/* Тонкая акцентная полоса сверху карточки при hover */
.bursty-bottling__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--space-8);
    right: var(--space-8);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-full);
}

.bursty-bottling__card:hover::before {
    opacity: 1;
}

/* ---------- 3. Иконка шага ---------- */
.bursty-bottling__icon {
    background: var(--accent-alpha-10);
    color: var(--accent);
    transition:
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.3s ease;
}

.bursty-bottling__card:hover .bursty-bottling__icon {
    background: var(--accent);
    color: var(--accent-on);
    transform: scale(1.08);
    box-shadow: var(--shadow-accent);
}

/* ---------- 4. Типографика карточки ---------- */
.bursty-bottling__card-title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-4);
}

.bursty-bottling__card-text {
    color: var(--text-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin: 0;
    flex: 1 1 auto; /* прижимаем футер, если будет */
}

/* ---------- 5. Итоговый акцент (стеклянная плашка) ---------- */
.bursty-bottling__note {
    max-width: 700px;
    display: inline-block;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.bursty-bottling__note p {
    margin: 0;
    color: var(--text-secondary);
}

.bursty-bottling__note strong {
    color: var(--accent);
}

/* ---------- 6. Адаптивность ---------- */
@media (max-width: 768px) {
    .bursty-bottling__card {
        padding: var(--space-6) !important;
    }

    .bursty-bottling__card::before {
        left: var(--space-6);
        right: var(--space-6);
    }
}

/* ---------- 7. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .bursty-bottling__card,
    .bursty-bottling__icon {
        transition: none;
    }

    .bursty-bottling__card:hover {
        transform: none;
    }
}