/* ==========================================
   STObonus — Pricing — Full Dark Premium
   ========================================== */

.pricing__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing__category {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--speed) var(--ease);
}

.pricing__category:hover {
    border-color: var(--border-hover);
}

.pricing__category.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--accent-rgb), .2);
}

.pricing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    transition: background var(--speed) var(--ease);
    user-select: none;
}

.pricing__header:hover {
    background: rgba(255, 255, 255, .03);
}

.pricing__header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing__header-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    color: var(--accent-hover);
    flex-shrink: 0;
    transition: all var(--speed) var(--ease);
}

.pricing__category.open .pricing__header-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), .35);
}

.pricing__header-icon svg {
    width: 20px;
    height: 20px;
}

.pricing__header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.pricing__header-count {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.pricing__chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--speed) var(--ease);
    flex-shrink: 0;
}

.pricing__category.open .pricing__chevron {
    transform: rotate(180deg);
    color: var(--accent-hover);
}

.pricing__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.pricing__body-inner {
    padding: 0 28px 24px;
}

.pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    transition: all var(--speed) var(--ease);
}

.pricing__row:hover {
    padding-left: 8px;
}

.pricing__row:last-child {
    border-bottom: none;
}

.pricing__service {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.5;
}

.pricing__price {
    font-size: .9rem;
    font-weight: 700;
    color: var(--accent-hover);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .pricing__header {
        padding: 18px 20px;
    }

    .pricing__body-inner {
        padding: 0 20px 20px;
    }

    .pricing__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}